1 # This is pretty useless, but it sets the version of the build
2 version: 0.0.0.build.{build}
7 # Use Visual Studio 2015 base image
8 image: Visual Studio 2015
10 # enforce the location, since we want predictable cmake things
11 clone_folder: c:\projects\osslugaru\lugaru
13 # Build for 32-bit target only
17 # Prep work (CMake VS project generation)
19 - cd c:\projects\osslugaru\lugaru
20 - set PATH=C:\Program Files (x86)\MSBuild\14.0\BIN;%PATH%
21 - 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
23 # Tell it what to build