Files
ResInsight/.appveyor.yml

20 lines
516 B
YAML
Raw Normal View History

2019-02-01 10:34:03 +01:00
version: 1.0.{build}
branches:
only:
- dev
image: Visual Studio 2017
clone_depth: 1
environment:
QT5: C:\Qt\5.10.1\msvc2017_64
2019-02-01 11:47:03 +01:00
configuration: Release
2019-02-01 10:34:03 +01:00
build_script:
- cmd: >-
mkdir cmakebuild
2019-02-01 11:15:29 +01:00
2019-02-01 10:34:03 +01:00
cd cmakebuild
if exist "%QT5%" set Path=%QT5%\bin;%Path%
cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_BUILD_TYPE=Release -DRESINSIGHT_INCLUDE_APPLICATION_UNIT_TESTS=true -DRESINSIGHT_ENABLE_COTIRE=on "-DCMAKE_PREFIX_PATH=%QT5%" ..
2019-02-01 10:34:03 +01:00
2019-02-01 12:29:48 +01:00
cmake --build . --target ResInsight_unity --config Release