From 38b7613eb455531a7f8a7b164464da50dfc37b7f Mon Sep 17 00:00:00 2001 From: ZachBacon Date: Thu, 1 Aug 2019 23:07:34 -0400 Subject: [PATCH] Setting up basic appveyor --- appveyor.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..08fbd4986 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,32 @@ +version: '{build}' +branches: + only: + - master + +image: + - Visual Studio 2017 + +configuration: + - Debug + +#let's start with 64bit + +platform: + - x64 + +environment: + matrix: + - arch: Win64 + +matrix: + fast_finish: true + +before_build: +- cmd: |- + mkdir build + git submodule update --init --recursive + cd build + cmake .. -G "Visual Studio 15 2017" -DVCPKG_TARGET_TRIPLET=x64-windows + +build_script: + - cmake --build . \ No newline at end of file