We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da3cc8 commit 03ece87Copy full SHA for 03ece87
1 file changed
ner_environment/build_system/build_system.py
@@ -52,7 +52,7 @@ def build(profile: str = typer.Option(None, "--profile", "-p", callback=unsuppor
52
clean: bool = typer.Option(False, "--clean", help="Clean the build directory before building", show_default=True)):
53
54
is_cmake = os.path.exists("CMakeLists.txt")
55
-
+ run_command(["docker", "compose", "run", "--rm", "ner-gcc-arm", "sh", "-c", "cmake --version"], stream_output=True) # remove this
56
if is_cmake: # Repo uses CMake, so execute CMake commands.
57
print("[bold blue]CMake project detected.")
58
0 commit comments