2016-06-07 08:50:47 +00:00
|
|
|
clone_depth: 5
|
|
|
|
|
|
|
|
environment:
|
|
|
|
matrix:
|
2019-01-12 03:28:34 +00:00
|
|
|
- JOB: Visual Studio 2015
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
|
|
CMAKE_GENERATOR: "Visual Studio 14 2015"
|
|
|
|
- JOB: Visual Studio 2017
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
CMAKE_GENERATOR: "Visual Studio 15 2017"
|
2020-01-23 22:27:29 +00:00
|
|
|
- JOB: Visual Studio 2019
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
|
|
|
CMAKE_GENERATOR: "Visual Studio 16 2019"
|
2019-01-12 03:28:34 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
- x86
|
|
|
|
- x64
|
|
|
|
|
|
|
|
configuration:
|
|
|
|
- Release
|
|
|
|
- Debug
|
2016-06-07 08:50:47 +00:00
|
|
|
|
|
|
|
build_script:
|
|
|
|
- mkdir build && cd build
|
|
|
|
- cmake .. -Wno-dev -G"%CMAKE_GENERATOR%"
|
|
|
|
- cmake --build . --config %CONFIGURATION%
|
|
|
|
|
|
|
|
test_script:
|
|
|
|
- ctest -C %CONFIGURATION% -V
|