summaryrefslogtreecommitdiffstats
path: root/scripts/build-unix-debug.sh
blob: 0c8387f8ce5983def01eaae6deb7fe6c8269aaaa (plain)
1
2
3
4
5
#!/bin/sh
cd "$(dirname $(dirname ${0}))" || exit 1
cmake -B build/unix-debug -DCMAKE_BUILD_TYPE=Debug || exit 1
cmake --build build/unix-debug --config Debug --parallel || exit 1
exit 0