Trying appveyor with no ninja.

This commit is contained in:
Ben Vanik 2015-02-11 20:26:31 -08:00
parent 61f8b8e6d2
commit eca3bd2d1c
3 changed files with 7 additions and 6 deletions

View File

@ -54,7 +54,7 @@ configuration: Debug
build: build:
parallel: true # enable MSBuild parallel builds parallel: true # enable MSBuild parallel builds
project: MyTestAzureCS.sln # path to Visual Studio solution or project project: build\xenia\xenia.sln # path to Visual Studio solution or project
# MSBuild verbosity level # MSBuild verbosity level
verbosity: quiet|minimal|normal|detailed verbosity: quiet|minimal|normal|detailed
@ -67,8 +67,8 @@ before_build:
after_build: after_build:
# to run your custom scripts instead of automatic MSBuild # to run your custom scripts instead of automatic MSBuild
build_script: #build_script:
- cmd: tools\buildbot\build.bat # - cmd: tools\buildbot\build.bat
# to disable automatic builds # to disable automatic builds
#build: off #build: off

View File

@ -1,3 +1,3 @@
@ECHO OFF REM @ECHO OFF
python xenia-build.py setup python xenia-build.py setup --no-ninja

View File

@ -275,7 +275,8 @@ class SetupCommand(Command):
print('') print('')
# Run the ninja bootstrap to build it, if it's missing. # Run the ninja bootstrap to build it, if it's missing.
if (not os.path.exists('third_party/ninja/ninja') and if (not '--no-ninja' in args and
not os.path.exists('third_party/ninja/ninja') and
not os.path.exists('third_party/ninja/ninja.exe')): not os.path.exists('third_party/ninja/ninja.exe')):
print('- preparing ninja...') print('- preparing ninja...')
os.chdir('third_party/ninja') os.chdir('third_party/ninja')