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 .