2016-06-13 14:18:50 +02:00
|
|
|
version: 1.0.{build}
|
2018-08-13 10:20:34 +02:00
|
|
|
|
2016-06-13 14:18:50 +02:00
|
|
|
clone_depth: 1
|
|
|
|
|
|
2018-08-13 10:20:34 +02:00
|
|
|
configuration:
|
|
|
|
|
- Release
|
|
|
|
|
|
|
|
|
|
os: Visual Studio 2015
|
|
|
|
|
image: Visual Studio 2015
|
2016-06-13 14:18:50 +02:00
|
|
|
|
2018-08-13 10:20:34 +02:00
|
|
|
platform:
|
|
|
|
|
- x64
|
2016-06-13 14:18:50 +02:00
|
|
|
|
2018-08-13 10:20:34 +02:00
|
|
|
matrix:
|
|
|
|
|
fast_finish: true
|
|
|
|
|
|
|
|
|
|
build_script:
|
|
|
|
|
- IF "%platform%" == "x64" set W64="-GVisual Studio 14 2015 Win64"
|
|
|
|
|
- cmake %W64% -DBUILD_SHARED_LIBS=ON
|
|
|
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
|
|
|
-DENABLE_PYTHON=ON
|
|
|
|
|
-DBUILD_APPLICATIONS=ON
|
|
|
|
|
- cmake --build . --config %configuration% --target install
|
2016-06-13 14:18:50 +02:00
|
|
|
|
2018-08-13 10:20:34 +02:00
|
|
|
test_script:
|
|
|
|
|
- ctest --config %configuration% --output-on-failure
|