8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ad8cd8 commit 6c78c6eCopy full SHA for 6c78c6e
appveyor.yml
@@ -1,10 +1,26 @@
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
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:
21
# Generate solution files using cmake, in 'builds' directory.
22
# No need to create it because it's part of the repo.
- - cd builds && cmake -G "Visual Studio 12" ../ && cd ..
23
+ - mkdir builds\%BUILD_FOLDER% && cd builds\%BUILD_FOLDER% && cmake -G %CMAKE_GENERATOR% ..\..\ && cd ..\..
24
25
configuration:
26
- Debug
0 commit comments