forked from BoostCMake/cmake_modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (29 loc) · 908 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
os: Visual Studio 2015
environment:
matrix:
# - GENERATOR: "Visual Studio 14 2015 Win64"
# CONFIG: Debug
# - GENERATOR: "Visual Studio 14 2015 Win64"
# CONFIG: Release
- GENERATOR: "Visual Studio 14 2015"
CONFIG: Debug
# - GENERATOR: "Visual Studio 14 2015"
# CONFIG: Release
matrix:
fast_finish: true
install:
# Install pkg-config from chocolatey
- cinst pkgconfiglite
build_script:
- cmd: set PATH=C:\Program Files (x86)\CMake\bin;%PATH%
- cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\vsvars32.bat"
- cmd: set CTEST_OUTPUT_ON_FAILURE=1
- cmd: cmake --version
- cmd: mkdir build
- cmd: cd build
- cmd: cmake .. -G"%GENERATOR%"
- cmd: cmake --build . --config %CONFIG% --target check
# test_script:
# - cmd: ctest -C Debug --output-on-failure
# - cmd: cd ../../