Setting up basic appveyor

This commit is contained in:
ZachBacon 2019-08-01 23:07:34 -04:00
parent 408cab71e2
commit 38b7613eb4
No known key found for this signature in database
GPG Key ID: 0F1C8FECF5BCF671
1 changed files with 32 additions and 0 deletions

32
appveyor.yml Normal file
View File

@ -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 .