From dfa35595fbdb4ca08fce6fe1d6867665a4615acc Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 23 Aug 2017 12:00:47 -0400 Subject: [PATCH] Try to add AppVeyor Cmake builds for debug and release Take 10 --- .appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index c30ff67a..646d9556 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -47,13 +47,13 @@ test_script: if($env:configuration -eq "Debug") { - cmake -G "$env:image" -DCMAKE_BUILD_TYPE=Debug ../ + cmake -G '"'$env:image'"' -DCMAKE_BUILD_TYPE=Debug ../ } else { - cmake -G "$env:image" -DCMAKE_BUILD_TYPE=Release ../ + cmake -G '"'$env:image'"' -DCMAKE_BUILD_TYPE=Release ../ }