2014-10-14 22:11:49 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2015-07-11 23:25:09 +02:00
|
|
|
ROOT=`pwd`
|
|
|
|
|
2014-10-14 23:22:02 +02:00
|
|
|
inifile() {
|
2014-10-14 23:18:01 +02:00
|
|
|
if [ ! -e eressea.ini ]; then
|
|
|
|
cp conf/eressea.ini .
|
|
|
|
build/iniparser/inifile eressea.ini add lua:paths lunit:scripts
|
|
|
|
fi
|
2014-10-14 23:22:02 +02:00
|
|
|
}
|
2014-10-14 23:18:01 +02:00
|
|
|
|
2015-07-11 23:25:09 +02:00
|
|
|
[ -z $BUILD ] && BUILD=Debug ; export BUILD
|
|
|
|
s/cmake-init
|
|
|
|
s/build
|
|
|
|
cd $ROOT
|
|
|
|
inifile
|
|
|
|
s/runtests
|