]> git.jsancho.org Git - lugaru.git/commitdiff
CI: We only have libraires for 32-bit MSVC builds, so remove 64-bit MSVC builds
authorNeal Gompa <ngompa13@gmail.com>
Tue, 15 Nov 2016 19:05:42 +0000 (14:05 -0500)
committerNeal Gompa <ngompa13@gmail.com>
Tue, 15 Nov 2016 19:05:42 +0000 (14:05 -0500)
.appveyor.yml

index 6a74e9309807ba0c50b1a023033e00de63a96be6..faf86a8356ccd0911786d7584930f6296db4ea5d 100644 (file)
@@ -7,17 +7,15 @@ image: Visual Studio 2015
 # enforce the location, since we want predictable cmake things
 clone_folder: c:\projects\osslugaru\lugaru
 
-# Build for 32-bit and 64-bit targets
+# Build for 32-bit target only
 platform:
   - x86
-  - x64
 
 # Prep work (CMake VS project generation)
 before_build:
   - cd c:\projects\osslugaru\lugaru
   - set PATH=C:\Program Files (x86)\MSBuild\14.0\BIN;%PATH%
   - if %PLATFORM% == x86 cmake . -DLUGARU_INSTALL_PREFIX=C:\projects\osslugaru\lugaru\msvc32-build -DLUGARU_FORCE_INTERNAL_SDL=True -DLUGARU_FORCE_INTERNAL_GLU=True -DLUGARU_FORCE_INTERNAL_JPEG=True -DLUGARU_FORCE_INTERNAL_PNG=True -DLUGARU_FORCE_INTERNAL_VORBIS=True -DLUGARU_FORCE_INTERNAL_ZLIB=True -DLUGARU_FORCE_INTERNAL_OPENAL=True
-  - if %PLATFORM% == x64 cmake -G "Visual Studio 14 2015 Win64" . -DLUGARU_INSTALL_PREFIX=C:\projects\osslugaru\lugaru\msvc64-build -DLUGARU_FORCE_INTERNAL_SDL=True -DLUGARU_FORCE_INTERNAL_GLU=True -DLUGARU_FORCE_INTERNAL_JPEG=True -DLUGARU_FORCE_INTERNAL_PNG=True -DLUGARU_FORCE_INTERNAL_VORBIS=True -DLUGARU_FORCE_INTERNAL_ZLIB=True -DLUGARU_FORCE_INTERNAL_OPENAL=True
 
 # Tell it what to build
 build: