summaryrefslogtreecommitdiff
path: root/make.sh
blob: 6483361da0ef7fb7916ee64710f18afab01428fe (plain)
1
2
3
4
5
6
7
8
9
10
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 .. )