aider/benchmark/cpp-test.sh
2025-02-06 16:41:59 -08:00

11 lines
155 B
Bash
Executable file

#!/bin/bash
# exit when any command fails
set -e
[ ! -d "build" ] && mkdir build
cd build
cmake -DEXERCISM_RUN_ALL_TESTS=1 -G "Unix Makefiles" ..
make