diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..5c3538556 --- /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 .