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