Commit 9b22f8b414dddae0bcf506f8e9a93ba514de157f

Edward Thomson 2015-01-06T18:34:43

Merge pull request #2803 from ethomson/appveyor Add appveyor yaml

diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..5c35385
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,19 @@
+version: '{build}'
+branches:
+  only:
+  - master
+build_script:
+- ps: >-
+    choco install cmake
+
+    choco install python2
+
+    mkdir build
+
+    cd build
+
+    cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON -D STDCALL=ON .. -G"Visual Studio 11"
+
+    cmake --build . --config RelWithDebInfo
+test_script:
+- ps: ctest -V .