8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5ad8cd8 + 6ce4bbe commit 1368722Copy full SHA for 1368722
appveyor.yml
@@ -1,14 +1,30 @@
1
+version: 1.6.0.{build}
2
+
3
os:
4
- Windows Server 2012 R2
5
-install:
6
+environment:
7
+ matrix:
8
9
+ - CMAKE_GENERATOR: Visual Studio 9 2008
10
+ - CMAKE_GENERATOR: Visual Studio 10 2010
11
+ - CMAKE_GENERATOR: Visual Studio 11 2012
12
+ - CMAKE_GENERATOR: Visual Studio 12 2013
13
+ - CMAKE_GENERATOR: Visual Studio 14 2015
14
15
+before_build:
16
# Generate solution files using cmake, in 'builds' directory.
17
# No need to create it because it's part of the repo.
- - cd builds && cmake -G "Visual Studio 12" ../ && cd ..
18
+ - pushd builds && cmake -G "%CMAKE_GENERATOR%" ..\ && popd
19
20
configuration:
21
- Debug
22
- Release
23
-build:
- project: builds/UnitTest++.sln
24
+build_script:
25
+ - pushd builds && cmake --build . && popd
26
27
+matrix:
28
+ fast_finish: true
29
30
0 commit comments