mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-05-02 05:33:53 +00:00
9 lines
167 B
Bash
Executable File
9 lines
167 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -evx
|
|
|
|
mkdir build || true
|
|
cd build
|
|
cmake .. -DCLI_SINGLE_FILE_TESTS=ON -DCMAKE_BUILD_TYPE=Debug
|
|
cmake --build . -- -j2
|
|
ctest --output-on-failure
|