From b94d767f86f712af7529654999663ed20d7afad3 Mon Sep 17 00:00:00 2001 From: Joakim Soderberg Date: Wed, 24 Sep 2014 18:02:04 +0200 Subject: [PATCH] Added Windows CI support with appveyor Added support for http://www.appveyor.com/ (login via github account). This will build the project and run the unit tests on Windows as well. Possible to add a badge like with Travis in the README.md as well. --- appveyor.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..5663334 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,6 @@ +build_script: + - md build + - cd build + - cmake .. + - cmake --build . --config Release + - ctest --output-on-failure \ No newline at end of file