From d0d8e22cd2ad213d9f247cd3551c094a433d957c Mon Sep 17 00:00:00 2001 From: Daniel Sipka Date: Thu, 1 Oct 2015 11:40:20 +0200 Subject: [PATCH] appveyor configuration --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index a57c174..502474c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,10 +1,10 @@ environment: matrix: - - GENERATOR: "Visual Studio 12 Win64" + - GENERATOR: "Visual Studio 12" CONFIG: Debug build_script: - mkdir build - cd build - - cmake "-G%GENERATOR%" -DBOOST_ROOT="C:\Libraries\boost" -DBOOST_LIBRARYDIR="c:\Libraries\boost\stage\lib" -DWITH_UNIT_TESTS=ON .. + - cmake "-G%GENERATOR%" -DBOOST_ROOT="C:\Libraries\boost" -DBOOST_LIBRARYDIR="c:\Libraries\boost\stage\lib" -DBoost_USE_STATIC_LIBS=ON -DWITH_UNIT_TESTS=ON .. - cmake --build . --config "%CONFIG%"