We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1eff1b commit 1c4c463Copy full SHA for 1c4c463
1 file changed
appveyor.yml
@@ -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