mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
11 lines
155 B
Bash
Executable file
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
|
|
|
|
|