diff options
Diffstat (limited to 'make.sh')
-rwxr-xr-x | make.sh | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 .. ) |