summaryrefslogtreecommitdiffstats
path: root/build.unix.generic.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.unix.generic.sh')
-rwxr-xr-xbuild.unix.generic.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.unix.generic.sh b/build.unix.generic.sh
new file mode 100755
index 0000000..21be74d
--- /dev/null
+++ b/build.unix.generic.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+cmake -B build -DCMAKE_BUILD_TYPE=Release || exit 1
+cmake --build build --parallel $(nproc) || exit 1
+exit 0