summaryrefslogtreecommitdiff
path: root/make.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make.sh')
-rwxr-xr-xmake.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/make.sh b/make.sh
index 6c27dce..6483361 100755
--- a/make.sh
+++ b/make.sh
@@ -1,5 +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 .. )