Try to add AppVeyor Cmake builds for debug and release

Take 3
pull/465/head
Jeffrey Walton 2017-08-23 11:35:33 -04:00
parent 5d2b8772b5
commit da00de7219
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 5 additions and 5 deletions

View File

@ -24,8 +24,8 @@ image:
environment: environment:
- BUILD_MODE = CMake - BUILD_MODE=CMake
- BUILD_MODE = MSBuild - BUILD_MODE=MSBuild
# Disable build through solution file # Disable build through solution file
build: off build: off
@ -44,13 +44,13 @@ test_script:
if($env:configuration -eq "Debug") if($env:configuration -eq "Debug")
{ {
cmake -DCMAKE_BUILD_TYPE=Debug ../ cmake -DCMAKE_BUILD_TYPE=Debug ../
} }
else else
{ {
cmake -DCMAKE_BUILD_TYPE=Release ../ cmake -DCMAKE_BUILD_TYPE=Release ../
} }