|
|
@ -46,6 +46,9 @@ else: |
|
|
|
ninja_command = environment.detect_ninja() |
|
|
|
ninja_command = environment.detect_ninja() |
|
|
|
if ninja_command is None: |
|
|
|
if ninja_command is None: |
|
|
|
raise RuntimeError('Could not find Ninja executable.') |
|
|
|
raise RuntimeError('Could not find Ninja executable.') |
|
|
|
|
|
|
|
if print_debug: |
|
|
|
|
|
|
|
compile_commands = [ninja_command, '-v'] |
|
|
|
|
|
|
|
else: |
|
|
|
compile_commands = [ninja_command] |
|
|
|
compile_commands = [ninja_command] |
|
|
|
test_commands = [ninja_command, 'test'] |
|
|
|
test_commands = [ninja_command, 'test'] |
|
|
|
install_commands = [ninja_command, 'install'] |
|
|
|
install_commands = [ninja_command, 'install'] |
|
|
|