From d5f6ecc442976023800e4e999c98f8ae89a7a393 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Fri, 6 Nov 2020 18:50:44 +0100 Subject: [PATCH] build_engine.sh should now attempt to build a dedicated server as well as the ffmpeg and bullet plugin. --- build_engine.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build_engine.sh b/build_engine.sh index 23973273..00346aa3 100755 --- a/build_engine.sh +++ b/build_engine.sh @@ -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/' ';' +