summaryrefslogtreecommitdiffstats
path: root/build.unix.generic.sh
blob: 21be74d08a792f9d04ac94e16f4f0d8a176a0ec5 (plain)
1
2
3
4
#!/bin/sh
cmake -B build -DCMAKE_BUILD_TYPE=Release || exit 1
cmake --build build --parallel $(nproc) || exit 1
exit 0