mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 14:55:00 +00:00
11 lines
108 B
Bash
Executable file
11 lines
108 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake -G "Unix Makefiles" ..
|
|
make
|
|
|
|
|