mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-11-14 15:05:29 +00:00
17 lines
375 B
YAML
17 lines
375 B
YAML
|
clone_depth: 5
|
||
|
|
||
|
environment:
|
||
|
matrix:
|
||
|
- CMAKE_GENERATOR: "Visual Studio 14 2015"
|
||
|
CONFIGURATION: Release
|
||
|
- CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"
|
||
|
CONFIGURATION: Release
|
||
|
|
||
|
build_script:
|
||
|
- mkdir build && cd build
|
||
|
- cmake .. -Wno-dev -G"%CMAKE_GENERATOR%"
|
||
|
- cmake --build . --config %CONFIGURATION%
|
||
|
|
||
|
test_script:
|
||
|
- ctest -C %CONFIGURATION% -V
|