Skip to content
Snippets Groups Projects
Commit cce69556 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Start implementation

parent ecb50779
No related branches found
No related tags found
1 merge request!3Draft: Resolve "Import command"
import os.path
from typing import Optional
from armarx_setup import console
......@@ -6,6 +7,17 @@ from armarx_setup.core.workspace import Workspace
def import_from_cmake_cache(ws: Workspace):
console.print("Import from cmake cache ...")
cmake_cache_dir = os.path.expandvars(os.path.join("$HOME", ".cmake", "packages"))
for package_name in sorted(os.listdir(cmake_cache_dir)):
package_dir = os.path.join(cmake_cache_dir, package_name)
ls = sorted(os.listdir(package_dir))
for i, entry_file in enumerate(ls):
entry_path = os.path.join(package_dir, entry_file)
console.print(f"Process entry {i+1}/{len(ls)} of '{package_name}' ({entry_file}) ...")
with open(entry_path, "r") as file:
build_dir = file.read().strip()
package_root = os.path.dirname(build_dir)
console.print(f"{package_root}")
def import_from_directory(ws: Workspace, directory: str):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment