From c9d3fbf16543bdb20a54e051ca922247e4740c92 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 23 Aug 2017 11:50:57 -0400 Subject: [PATCH] Try to add AppVeyor Cmake builds for debug and release Take 8 --- .appveyor.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 1ac84da7..8d2033ee 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -47,17 +47,19 @@ test_script: if($env:configuration -eq "Debug") { - cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Debug ../ + cmake -G "Visual Studio" -DCMAKE_BUILD_TYPE=Debug ../ } else { - cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release ../ + cmake -G "Visual Studio" -DCMAKE_BUILD_TYPE=Release ../ } - nmake VERBOSE=1 + msbuild /t:Build cryptopp-static.vcxproj + + msbuild /t:Build cryptopp.vcxproj .\cryptest.exe v