[go: up one dir, main page]

File: appveyor.yml

package info (click to toggle)
toml11 3.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,120 kB
  • sloc: cpp: 17,500; sh: 6; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 587 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
  - cmake -G"%generator%" -DBOOST_ROOT=C:/Libraries/boost_1_69_0 -Dtoml11_BUILD_TEST=ON ..
  - cmake --build . --config "%configuration%"
  - file --mime-encoding tests/toml/tests/hard_example_unicode.toml

test_script:
  - ctest --build-config "%configuration%" --timeout 300 --output-on-failure