goborator/build-deps.sh

13 lines
147 B
Bash
Raw Normal View History

2022-01-23 20:09:47 +00:00
#!/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)