8000 Add more compilers to appveyor config · Reification/unittest-cpp@6c78c6e · GitHub
[go: up one dir, main page]

Skip to content

Commit 6c78c6e

Browse files
committed
Add more compilers to appveyor config
1 parent 5ad8cd8 commit 6c78c6e

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

appveyor.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
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
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'
19+
20+
before_build:
521
# Generate solution files using cmake, in 'builds' directory.
622
# No need to create it because it's part of the repo.
7-
- cd builds && cmake -G "Visual Studio 12" ../ && cd ..
23+
- mkdir builds\%BUILD_FOLDER% && cd builds\%BUILD_FOLDER% && cmake -G %CMAKE_GENERATOR% ..\..\ && cd ..\..
824

925
configuration:
1026
- Debug

0 commit comments

Comments
 (0)
0