From b13adcebd1309bd723d6c549c3fb1097915f7a16 Mon Sep 17 00:00:00 2001 From: Aart Stuurman Date: Thu, 25 Jan 2018 22:47:55 +0100 Subject: [PATCH] appveyor config --- appveyor.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..299b257 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,19 @@ +version: '1.0.{build}' + +image: Visual Studio 2017 + +platform: + - x64 + +configuration: + - Release + - Debug + +install: + - git submodule update --init --recursive + +before_build: + - cmake -G "Visual Studio 15 2017 Win64" . + +build: + project: $(APPVEYOR_BUILD_FOLDER)\$(APPVEYOR_PROJECT_NAME).sln \ No newline at end of file