Run test suite with xcodebuild on OSX.

pull/15/head
Jussi Pakkanen 11 years ago
parent 72455e555f
commit 6b56bfd10e
  1. 5
      run_tests.py

@ -32,6 +32,11 @@ if msbuild_exe is not None:
compile_commands = ['msbuild']
test_commands = ['msbuild', 'RUN_TESTS.vcxproj']
install_commands = []
elif environment.is_osx():
backend_flags = ['--backend=xcode']
compile_commands = ['xcodebuild']
test_commands = ['xcodebuild', '-target', 'RUN_TESTS']
install_commands = []
else:
backend_flags = []
ninja_command = environment.detect_ninja()

Loading…
Cancel
Save