Подготовить автономную сборку и запуск перед разделением проектов

This commit is contained in:
Александр Петров
2026-09-15 23:04:04 +03:00
parent 5323b168a7
commit 0e74aaa7ee
116 changed files with 6908 additions and 333 deletions
+11
View File
@@ -95,6 +95,17 @@ class Protocol:
'--build', build, '--socket', socket_path]
if arguments.get('mame'):
command.extend(['--mame', arguments['mame']])
profile_arguments = {
'mameHome': '--mame-home',
'mameBin': '--mame-bin',
'mameRompath': '--mame-rompath',
'mameDssImage': '--mame-dss-image',
'mameSystemHddImage': '--mame-system-hdd-image',
'mameBios': '--mame-bios',
}
for key, option in profile_arguments.items():
if arguments.get(key):
command.extend([option, arguments[key]])
if arguments.get('debugger'):
command.extend(['--debugger', arguments['debugger']])
if arguments.get('launchAt') is not None: