cirrus: build all renderers available, remove unsupported -W flag for waf configure

This commit is contained in:
Alibek Omarov 2021-11-27 06:23:04 +03:00
parent fc665527ae
commit 66db69862f
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
#!/bin/sh
. scripts/lib.sh
if [ "$1" = "dedicated" ]; then
APP=xashds
else # elif [ "$1" = "full" ]; then
@ -14,7 +16,7 @@ build_engine()
if [ "$APP" = "xashds" ]; then
./waf configure -T release -d || die
elif [ "$APP" = "xash3d-fwgs" ]; then
./waf configure -T release --enable-stb -W --enable-utils || die
./waf configure -T release --enable-stb --enable-utils --enable-gl4es --enable-gles1 --enable-gles2 || die
else
die
fi