Skip to content

Commit

Permalink
Setting up basic appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachBacon committed Aug 2, 2019
1 parent 408cab7 commit 38b7613
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions 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 .

0 comments on commit 38b7613

Please sign in to comment.