Merge pull request #35 from akien-mga/appveyor-fix-vs2019

This commit is contained in:
Twarit Waikar
2020-05-17 18:27:30 +05:30
committed by GitHub
2 changed files with 12 additions and 10 deletions

View File

@@ -1,10 +1,11 @@
# environment:
# matrix:
# - vs_version: 16
environment:
matrix:
- vs_version: 16
os: Visual Studio 2019
build: off
configuration:
- release
- debug
@@ -13,8 +14,9 @@ platform:
- x64
install:
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
- curl -LO https://downloads.sourceforge.net/project/scons/scons-local/3.0.5/scons-local-3.0.5.zip
- unzip scons-local-3.0.5.zip
- ./build_libs.bat %configuration%
- scons platform=windows target=%configuration% -j6
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
- curl -LO https://downloads.sourceforge.net/project/scons/scons-local/3.1.2/scons-local-3.1.2.zip
- unzip scons-local-3.1.2.zip
- .\build_libs.bat %configuration%
- cd ..
- .\scons.bat platform=windows target=%configuration% -j2

View File

@@ -11,5 +11,5 @@ cd ../../../../
copy godot-git-plugin\thirdparty\libgit2\build\%1\git2.lib demo\bin\win64\
cd godot-cpp\
scons platform=windows target=%1 generate_bindings=yes bits=64
..\scons.bat platform=windows target=%1 generate_bindings=yes bits=64
cd ..