From 77982d9ee51d53639166b42fcf915714b4ed60bc Mon Sep 17 00:00:00 2001 From: Holger Nahrstaedt Date: Wed, 9 Mar 2016 15:31:17 +0100 Subject: [PATCH] add appveyor --- appveyor.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..44f319b --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,16 @@ +os: Visual Studio 2015 + +platform: x64 + +environment: + BOOST_ROOT: C:\Libraries\boost_1_59_0 + BOOST_LIBRARYDIR: C:\Libraries\boost_1_59_0\lib64-msvc-14.0 + +build_script: + - mkdir build + - cd build + - cmake .. -G"Visual Studio 14 2015 Win64" + - cmake --build . --config Debug + +test_script: + - ctest -VV -C Debug \ No newline at end of file