From a73b1d50eb886f29f885b2489627911f93c29c8c Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 23 Aug 2017 11:37:56 -0400 Subject: [PATCH] Try to add AppVeyor Cmake builds for debug and release Take 5 --- .appveyor.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index d951a204..699d55a9 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -24,8 +24,9 @@ image: environment: -- BUILD_MODE=CMake -- BUILD_MODE=MSBuild + matrix: + - BUILD_MODE: CMake + - BUILD_MODE: MSBuild # Disable build through solution file build: off @@ -44,13 +45,13 @@ test_script: if($env:configuration -eq "Debug") { - + cmake -DCMAKE_BUILD_TYPE=Debug ../ - + } else { - + cmake -DCMAKE_BUILD_TYPE=Release ../ }