Skip to content

Commit 1c4c463

Browse files
committed
Add appveyor file
1 parent a1eff1b commit 1c4c463

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

appveyor.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: '{build}'
2+
3+
image: Visual Studio 2017
4+
5+
environment:
6+
matrix:
7+
- GENERATOR: "Visual Studio 14"
8+
CONFIG: Debug
9+
10+
- GENERATOR: "Visual Studio 15 Win64"
11+
CONFIG: Release
12+
13+
build_script:
14+
- cmake "-G%GENERATOR%" -H. -B_builds -DENABLE_TESTING=1
15+
- cmake --build _builds --config "%CONFIG%"
16+
17+
test_script:
18+
- ps: cd _builds
19+
- ctest -VV -C "%CONFIG%"

0 commit comments

Comments
 (0)