summaryrefslogtreecommitdiff
path: root/make.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make.sh')
-rwxr-xr-xmake.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/make.sh b/make.sh
new file mode 100755
index 0000000..6483361
--- /dev/null
+++ b/make.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# get directory of script and cd to it
+DIR="$( cd "$( dirname "$0" )" && pwd )"
+cd $DIR
+
+./resources/locale/compile-po.sh
+
+mkdir build
+
+cd build; cmake ..; make -j8 && ( cd .. )