forked from github/server
17 lines
250 B
Bash
Executable file
17 lines
250 B
Bash
Executable file
#!/bin/sh
|
|
|
|
ROOT=`pwd`
|
|
|
|
inifile() {
|
|
if [ ! -e eressea.ini ]; then
|
|
cp conf/eressea.ini .
|
|
build/iniparser/inifile eressea.ini add lua:paths lunit:scripts
|
|
fi
|
|
}
|
|
|
|
[ -z $BUILD ] && BUILD=Debug ; export BUILD
|
|
s/cmake-init
|
|
s/build
|
|
cd $ROOT
|
|
inifile
|
|
s/runtests
|