X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=.appveyor.yml;h=65dd1fcf228f6d61619980ada30701a3644948a5;hb=d3acd7fa1309b73959a34290cc27c8c91c8180d7;hp=faf86a8356ccd0911786d7584930f6296db4ea5d;hpb=4063f48049385814aa7b309bca42c1d429fb256f;p=lugaru.git diff --git a/.appveyor.yml b/.appveyor.yml index faf86a8..65dd1fc 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,6 +1,9 @@ # This is pretty useless, but it sets the version of the build version: 0.0.0.build.{build} +# Force configuration +configuration: Debug + # Use Visual Studio 2015 base image image: Visual Studio 2015 @@ -9,15 +12,15 @@ clone_folder: c:\projects\osslugaru\lugaru # Build for 32-bit target only platform: - - x86 + - Win32 # 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% == Win32 cmake . -DCMAKE_BUILD_TYPE=Debug -DLUGARU_INSTALL_PREFIX=C:\projects\osslugaru\lugaru\msvc32-build -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: - - project: lugaru.sln - - parallel: true + project: lugaru.sln + parallel: true