aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 00000000..4010f2ea
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,14 @@
+version: 1.17.2.{build}
+
+environment:
+ matrix:
+ - GEN: "Visual Studio 14 2015"
+ CFG: Release
+ - GEN: "Visual Studio 14 2015 Win64"
+ CFG: Release
+
+build_script:
+ - cd build
+ - cmake .. -G"%GEN%"
+ - cmake --build . --config %CFG% --clean-first
+