mstch/appveyor.yml

11 lines
303 B
YAML
Raw Normal View History

2015-10-01 17:17:01 +08:00
environment:
matrix:
2015-10-01 17:35:27 +08:00
- GENERATOR: "Visual Studio 12 Win64"
2015-10-01 17:17:01 +08:00
CONFIG: Debug
build_script:
- mkdir build
- cd build
2015-10-01 17:37:36 +08:00
- cmake "-G%GENERATOR%" -DBOOST_ROOT="C:\Libraries\boost" -DBOOST_LIBRARYDIR="c:\Libraries\boost\stage\lib" -DWITH_UNIT_TESTS=ON ..
2015-10-01 17:17:01 +08:00
- cmake --build . --config "%CONFIG%"