11 lines
324 B
YAML
11 lines
324 B
YAML
environment:
|
|
matrix:
|
|
- GENERATOR: "Visual Studio 12"
|
|
CONFIG: Debug
|
|
|
|
build_script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake "-G%GENERATOR%" -DBOOST_ROOT="C:\Libraries\boost" -DBOOST_LIBRARYDIR="c:\Libraries\boost\stage\lib" -DBoost_USE_STATIC_LIBS=ON -DWITH_UNIT_TESTS=ON ..
|
|
- cmake --build . --config "%CONFIG%"
|