aboutsummaryrefslogtreecommitdiff
path: root/src/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/build.sh')
-rwxr-xr-xsrc/build.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/build.sh b/src/build.sh
new file mode 100755
index 0000000..e987bc1
--- /dev/null
+++ b/src/build.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+# creates the build dir and runs CMake with Ninja
+cmake -B build -G Ninja
+
+# build the project
+cmake --build build \ No newline at end of file