mirror of
https://github.com/ToruNiina/toml11.git
synced 2024-11-08 13:50:06 +00:00
27 lines
612 B
YAML
27 lines
612 B
YAML
version: "{build}"
|
|
os: Visual Studio 2015
|
|
|
|
environment:
|
|
matrix:
|
|
- generator: Visual Studio 14 2015 Win64
|
|
- generator: Visual Studio 14 2015
|
|
|
|
configuration:
|
|
- Release
|
|
- Debug
|
|
|
|
clone_depth: 10
|
|
clone_folder: c:\toml11
|
|
|
|
build_script:
|
|
- cd C:\toml11
|
|
- mkdir build
|
|
- cd build
|
|
- git clone https://github.com/toml-lang/toml.git
|
|
- file --mime-encoding toml/example/hard_example_unicode.toml
|
|
- cmake -G"%generator%" -DBOOST_ROOT=C:/Libraries/boost_1_63_0 ..
|
|
- cmake --build . --config "%configuration%"
|
|
|
|
test_script:
|
|
- ctest --build-config "%configuration%" --timeout 300 --output-on-failure
|