8000 Fix CMAKE_GENERATOR values · unittest-cpp/unittest-cpp@8080a0c · GitHub
[go: up one dir, main page]

Skip to content

Commit 8080a0c

Browse files
committed
Fix CMAKE_GENERATOR values
1 parent 5908e00 commit 8080a0c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

appveyor.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@ os:
6 8000 6
environment:
77
matrix:
88

9-
- CMAKE_GENERATOR: Visual Studio 9
10-
BUILD_FOLDER: 'vs2008'
11-
- CMAKE_GENERATOR: Visual Studio 10
12-
BUILD_FOLDER: 'vs2010'
13-
- CMAKE_GENERATOR: Visual Studio 11
14-
BUILD_FOLDER: 'vs2012'
15-
- CMAKE_GENERATOR: Visual Studio 12
16-
BUILD_FOLDER: 'vs2013'
17-
- CMAKE_GENERATOR: Visual Studio 14
18-
BUILD_FOLDER: 'vs2015'
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
1914

2015
before_build:
2116
# Generate solution files using cmake, in 'builds' directory.
2217
# No need to create it because it's part of the repo.
23-
- mkdir builds\%BUILD_FOLDER% && cd builds\%BUILD_FOLDER% && cmake -G "%CMAKE_GENERATOR%" ..\..\ && cd ..\..
18+
- pushd builds && cmake -G "%CMAKE_GENERATOR%" ..\ && popd
2419

2520
configuration:
2621
- Debug
2722
- Release
2823

2924
build:
3025
project: builds/UnitTest++.sln
26+
27+
matrix:
28+
fast_finish: true
29+
30+

0 commit comments

Comments
 (0)
0