Skip to content

Commit 3b80fc5

Browse files
committed
chore(cli): déclarer prog-engine comme commande GUI explicite
1 parent 66a1739 commit 3b80fc5

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

cli/runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def should_enable_qt(argv: list[str] | None) -> bool:
259259
"ws",
260260
"scaffold",
261261
}
262-
gui_commands = {"gui", "main"}
262+
gui_commands = {"gui", "main", "prog-engine"}
263263
if cmd in gui_commands:
264264
return True
265265
if cmd in headless_commands:

pycompiler_ark.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
python -m pycompiler_ark bcasl /path/to/ws # Launch BCASL with workspace
3030
python -m pycompiler_ark engines # Launch Engines standalone GUI
3131
python -m pycompiler_ark engines /path/to/ws # Launch Engines with workspace
32+
python -m pycompiler_ark prog-engine nuitka /path/to/ws # Launch GUI focused on one engine
3233
python -m pycompiler_ark engines --dry-run # List available engines
3334
python -m pycompiler_ark unload # Unload all engines
3435
"""

0 commit comments

Comments
 (0)