]> git.jsancho.org Git - lugaru.git/blob - .appveyor.yml
CI: AppVeyor x86 -> Win32
[lugaru.git] / .appveyor.yml
1 # This is pretty useless, but it sets the version of the build
2 version: 0.0.0.build.{build}
3
4 # Force configuration
5 configuration: Debug
6
7 # Use Visual Studio 2015 base image
8 image: Visual Studio 2015
9
10 # enforce the location, since we want predictable cmake things
11 clone_folder: c:\projects\osslugaru\lugaru
12
13 # Build for 32-bit target only
14 platform:
15   - Win32
16
17 # Prep work (CMake VS project generation)
18 before_build:
19   - cd c:\projects\osslugaru\lugaru
20   - set PATH=C:\Program Files (x86)\MSBuild\14.0\BIN;%PATH%
21   - if %PLATFORM% == Win32 cmake . -DCMAKE_BUILD_TYPE=Debug -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
22
23 # Tell it what to build
24 build:
25   project: lugaru.sln
26   parallel: true