goborator/build-deps.sh
2022-01-23 21:09:47 +01:00

13 lines
147 B
Bash
Executable file

#!/bin/bash
set -ex
pushd "${0%/*}"
pushd c-gaborator
if [[ -d "build" ]]; then
rm -r build
fi
mkdir build
pushd build
cmake ..
make -j$(nproc)