8000 Merge pull request #101 from pjohnmeyer/add_more_vs_appveyor_configs · unittest-cpp/unittest-cpp@1368722 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1368722

Browse files
committed
Merge pull request #101 from pjohnmeyer/add_more_vs_appveyor_configs
Fixes #86
2 parents 5ad8cd8 + 6ce4bbe commit 1368722

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

appveyor.yml

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,30 @@
1+
version: 1.6.0.{build}
2+
13
os:
24
- Windows Server 2012 R2
35

4-
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:
516
# Generate solution files using cmake, in 'builds' directory.
617
# No need to create it because it's part of the repo.
7-
- cd builds && cmake -G "Visual Studio 12" ../ && cd ..
18+
- pushd builds && cmake -G "%CMAKE_GENERATOR%" ..\ && popd
819

920
configuration:
1021
- Debug
1122
- Release
1223

13-
build:
14-
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

Comments
 (0)
0