From 911ef405c77c5f20e9724f37efcbdf56d6fd028b Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 17 May 2018 10:03:24 -0400 Subject: [PATCH] Okay, THAT worked, so let's fix the cmd.exe quoting --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index ee0f19d5..152b2a86 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -42,7 +42,7 @@ before_build: build_script: - | - C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe cpucount.cpp && .\cpucount.exe + "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe" cpucount.cpp && .\cpucount.exe - md build && cd build - cmake -G "%CMAKE_GENERATOR%" %CMAKE_FLAGS% .. - if %compiler%==mingw ( mingw32-make tester examples )