mstch/appveyor.yml

20 lines
537 B
YAML
Raw Normal View History

2015-10-01 09:17:01 +00:00
environment:
matrix:
2015-10-01 21:45:59 +00:00
- GENERATOR: "Visual Studio 14 2015"
2015-10-01 16:21:20 +00:00
CONFIG: Release
2015-10-01 22:03:51 +00:00
BOOST_ROOT: "C:\\Libraries\\boost_1_59_0"
BOOST_LIBRARYDIR: "C:\\Libraries\\boost_1_59_0\\stage\\lib"
2015-10-01 09:17:01 +00:00
2015-10-01 10:01:39 +00:00
install:
- git submodule init
- git submodule update
2015-10-01 09:17:01 +00:00
build_script:
- mkdir build
- cd build
2015-10-01 21:55:47 +00:00
- cmake "-G%GENERATOR%" -DBOOST_ROOT="%BOOST_ROOT%" -DBOOST_LIBRARYDIR="%BOOST_LIBRARYDIR%" -DBoost_USE_STATIC_LIBS=ON -DWITH_UNIT_TESTS=ON ..
2015-10-01 09:17:01 +00:00
- cmake --build . --config "%CONFIG%"
2015-10-01 10:50:40 +00:00
test_script:
2015-10-01 10:54:34 +00:00
- ctest --build-config "%CONFIG%"