mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-05-04 06:13:53 +00:00
10 lines
118 B
Bash
Executable File
10 lines
118 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -evx
|
|
env | sort
|
|
|
|
mkdir build || true
|
|
cd build
|
|
cmake ..
|
|
make
|
|
CTEST_OUTPUT_ON_FAILURE=1 make test
|