build_engine.sh should now attempt to build a dedicated server as well as the ffmpeg and bullet plugin.
This commit is contained in:
parent
6927eba291
commit
d5f6ecc442
1 changed files with 7 additions and 0 deletions
|
@ -20,6 +20,13 @@ fi
|
|||
make -j $(nproc) makelibs FTE_TARGET=SDL2
|
||||
make -j $(nproc) m-rel FTE_TARGET=SDL2
|
||||
cp -v ./release/fteqw-sdl2 ../../../bin/fteqw
|
||||
make -j $(nproc) sv-rel
|
||||
cp -v ./release/fteqw-sv ../../../bin/fteqw-sv
|
||||
make -j $(nproc) qcc-rel
|
||||
cp -v ./release/fteqcc ../../../bin/fteqcc
|
||||
make -j $(nproc) plugins-rel NATIVE_PLUGINS="bullet"
|
||||
find ./release/ -name 'fteplug_bullet_*.so' -exec cp -prv '{}' '../../../bin/' ';'
|
||||
make -j $(nproc) plugins-rel NATIVE_PLUGINS="ffmpeg"
|
||||
find ./release/ -name 'fteplug_ffmpeg_*.so' -exec cp -prv '{}' '../../../bin/' ';'
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue