diff --git a/scripts/build.sh b/scripts/build.sh
new file mode 100755
index 0000000000000000000000000000000000000000..fcf1324c71322ac6993bdc69174cc19cbd19f13f
--- /dev/null
+++ b/scripts/build.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# Navigate to the main directory of the cloned repository
+BASEDIR=$(dirname "$0")
+cd $BASEDIR
+cd ..
+
+# Setup git lfs and the submodules
+git lfs install
+git submodule init
+git submodule update
+
+# Setup build directory
+mkdir build
+cd build
+
+# Build process
+cmake ..
+make
\ No newline at end of file