This commit is contained in:
VB
2017-07-02 13:34:52 +02:00
parent 3a02a65ada
commit 4d46002a32
2 changed files with 8 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ branches:
except:
- master
- dp
image: Visual Studio 2017
image: Visual Studio 2015
clone_depth: 1
build_script:
- cmd: >-
@@ -13,7 +13,7 @@ build_script:
cd build_win32
cmake --build . --config Release
cmake --build . --config RelWithDebInfo
cd ..
@@ -21,9 +21,11 @@ build_script:
cd build_win64
cmake --build . --config Release
cmake --build . --config RelWithDebInfo
cd ..
7z a symbols.zip build_win32/RelWithDebInfo/eu07++ng.pdb build_win64/RelWithDebInfo/eu07++ng.pdb
test: off
deploy: off
artifacts:
@@ -34,5 +36,7 @@ artifacts:
- path: shaders
name: shaders
type: zip
- path: builds/symbols.zip
name: symbols
cache:
- builds/deps_win -> builds/download_windeps.bat

View File

@@ -2,7 +2,7 @@ if not exist deps_win call %~dp0download_windeps.bat
set DEPS_DIR="%cd%/deps_win"
if not exist build_win32 mkdir build_win32
pushd build_win32
cmake ../.. -T v141_xp ^
cmake ../.. -T v140_xp ^
-DGLEW_INCLUDE_DIR=%DEPS_DIR%/glew-2.0.0/include ^
-DGLEW_LIBRARY=%DEPS_DIR%/glew-2.0.0/lib/Release/Win32/glew32.lib ^
-DGLFW3_ROOT_PATH=%DEPS_DIR%/glfw-3.2.1.bin.WIN32 ^