From d079909ed55f0a99144c4b5804ae3ef0fa8af18c Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 23 Aug 2017 11:43:52 -0400 Subject: [PATCH] Try to add AppVeyor Cmake builds for debug and release Take 6 --- .appveyor.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 699d55a9..896fbc26 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -25,6 +25,7 @@ image: environment: matrix: + - BUILD_MODE: CMake - BUILD_MODE: MSBuild @@ -46,17 +47,17 @@ test_script: if($env:configuration -eq "Debug") { - cmake -DCMAKE_BUILD_TYPE=Debug ../ + cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Debug ../ } else { - cmake -DCMAKE_BUILD_TYPE=Release ../ + cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release ../ } - make -j 2 VERBOSE=1 + nmake VERBOSE=1 .\cryptest.exe v