From bf423363bdc102645b10d4dc672f81c0f2dfbe1f Mon Sep 17 00:00:00 2001 From: Niels Date: Sat, 20 Jun 2015 15:13:45 +0200 Subject: [PATCH] build in release mode on appveyor (from #88) --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 31eaa0a3..03622207 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,6 +5,6 @@ install: [] build_script: - set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% - cmake . -- msbuild json.sln +- msbuild json.sln /p:Configuration=Release test_script: -- Debug\json_unit.exe +- Release\json_unit.exe