Commit 388ca7e73c701911ec954cea2ed35997016094f0

Edward Thomson 2015-01-06T15:16:25

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 .