From 66149991be4cb756d8feb5d49dae0bf05f5bed08 Mon Sep 17 00:00:00 2001 From: Daniel Sipka Date: Fri, 2 Oct 2015 00:16:07 +0200 Subject: [PATCH] appveyor configuration --- appveyor.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index e3c2a4a..f9a276c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,16 +1,30 @@ environment: matrix: + - GENERATOR: "Visual Studio 12 2013" + CONFIG: Release + BOOST_ROOT: "C:\\Libraries\\boost" + BOOST_LIBRARYDIR: "C:\\Libraries\\boost\\lib32-msvc-12.0" + + - GENERATOR: "Visual Studio 12 2013 Win64" + CONFIG: Release + BOOST_ROOT: "C:\\Libraries\\boost" + BOOST_LIBRARYDIR: "C:\\Libraries\\boost\\lib64-msvc-12.0" + - GENERATOR: "Visual Studio 14 2015" CONFIG: Release BOOST_ROOT: "C:\\Libraries\\boost_1_59_0" BOOST_LIBRARYDIR: "C:\\Libraries\\boost_1_59_0\\lib32-msvc-14.0" + - GENERATOR: "Visual Studio 14 2015 Win64" + CONFIG: Release + BOOST_ROOT: "C:\\Libraries\\boost_1_59_0" + BOOST_LIBRARYDIR: "C:\\Libraries\\boost_1_59_0\\lib64-msvc-14.0" + install: - git submodule init - git submodule update build_script: - - tree /a /f C:\Libraries\boost_1_59_0 - mkdir build - cd build - cmake "-G%GENERATOR%" -DBOOST_ROOT="%BOOST_ROOT%" -DBOOST_LIBRARYDIR="%BOOST_LIBRARYDIR%" -DBoost_USE_STATIC_LIBS=ON -DWITH_UNIT_TESTS=ON ..