forked from github/server
17 lines
382 B
Plaintext
17 lines
382 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
inifile() {
|
||
|
if [ ! -e eressea.ini ]; then
|
||
|
cp conf/eressea.ini .
|
||
|
build/iniparser/inifile eressea.ini add lua:paths lunit:scripts
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
[ -d build ] || mkdir build
|
||
|
cd build && cmake .. \
|
||
|
-DCMAKE_MODULE_PATH=$PWD/../cmake/Modules \
|
||
|
-DCMAKE_BUILD_TYPE=Debug .. && \
|
||
|
make && cd .. && inifile &&
|
||
|
build/eressea/test_eressea &&
|
||
|
build/eressea/eressea -v0 scripts/run-tests.lua
|