-
Notifications
You must be signed in to change notification settings - Fork 14
/
.appveyor.yml
29 lines (24 loc) · 938 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
configuration:
- Debug
- Release
environment:
matrix:
- generator: "Visual Studio 14 2015"
- generator: "Visual Studio 14 2015 Win64"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
generator: "Visual Studio 15 2017 Win64"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
generator: "Visual Studio 15 2017"
matrix:
fast_finish: true
shallow_clone: true
before_build:
# Workaround for CMake not wanting sh.exe on PATH for MinGW
- set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
- if "%dialect%"=="mingw" set PATH=c:\MinGW\bin;%PATH%
- if "%dialect%"=="mingw-w64" set PATH=c:\msys64\mingw64\bin;%PATH%
- cmake . -Bbuild -G"%generator%" -DCMAKE_BUILD_TYPE=%configuration%
build_script:
- if "%generator:~0,6%"=="Visual" set CMAKE_BUILD_FLAGS=--config %configuration% -- /m /v:m
- if "%generator:~0,5%"=="MinGW" set CMAKE_BUILD_FLAGS=-- -j
- cmake --build build %CMAKE_BUILD_FLAGS%