From 8926c476b37c111105c430f2abb242014cc0d7e9 Mon Sep 17 00:00:00 2001 From: Daniel Sipka Date: Thu, 1 Oct 2015 11:17:01 +0200 Subject: [PATCH] appveyor configuration --- appveyor.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..b41d343 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,10 @@ +environment: + matrix: + - GENERATOR: "Visual Studio 12" + CONFIG: Debug + +build_script: + - mkdir build + - cd build + - cmake "-G%GENERATOR%" .. + - cmake --build . --config "%CONFIG%"