mirror of
https://github.com/CLIUtils/CLI11.git
synced 2026-01-19 04:52:08 +00:00
10 lines
366 B
YAML
10 lines
366 B
YAML
steps:
|
|
- task: CMake@1
|
|
inputs:
|
|
cmakeArgs: .. -DCLI11_WARNINGS_AS_ERRORS=ON -DCLI11_SINGLE_FILE=$(cli11.single) -DCMAKE_CXX_STANDARD=$(cli11.std) -DCLI11_SINGLE_FILE_TESTS=$(cli11.single) -DCMAKE_BUILD_TYPE=$(cli11.build_type) $(cli11.options)
|
|
displayName: "Configure"
|
|
|
|
- script: cmake --build .
|
|
displayName: "Build"
|
|
workingDirectory: build
|