mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
17 lines
279 B
Bash
Executable File
17 lines
279 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. scripts/lib.sh
|
|
|
|
build_engine()
|
|
{
|
|
# Build engine
|
|
cd "$CIRRUS_WORKING_DIR" || die
|
|
|
|
./waf configure --enable-utils --enable-all-renderers --enable-tests --enable-dedicated || die_configure
|
|
./waf build || die
|
|
}
|
|
|
|
rm -rf build # clean-up build directory
|
|
|
|
build_engine
|