You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if [ "$1" = "dedicated" ]; then
|
|
|
|
APP=xashds
|
|
|
|
else # elif [ "$1" = "full" ]; then
|
|
|
|
APP=xash3d-fwgs
|
|
|
|
fi
|
|
|
|
|
|
|
|
build_engine()
|
|
|
|
{
|
|
|
|
# Build engine
|
|
|
|
cd "$CIRRUS_WORKING_DIR" || die
|
|
|
|
|
|
|
|
if [ "$APP" = "xashds" ]; then
|
|
|
|
./waf configure -T release -d -W || die
|
|
|
|
elif [ "$APP" = "xash3d-fwgs" ]; then
|
|
|
|
./waf configure -T release --enable-stb -W || die
|
|
|
|
else
|
|
|
|
die
|
|
|
|
fi
|
|
|
|
|
|
|
|
./waf build || die
|
|
|
|
}
|
|
|
|
|
|
|
|
rm -rf build # clean-up build directory
|
|
|
|
|
|
|
|
build_engine
|