Подготовить автономную сборку и запуск перед разделением проектов
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user