From e5bc151c784da942e03af91799b325d93a335a6d Mon Sep 17 00:00:00 2001 From: Rokas Kupstys Date: Sun, 10 Dec 2017 14:50:22 +0200 Subject: [PATCH] All arguments passed to `build/Compile.sh` are passed to premake. Allows more fine-grained build customization when using this shellscript for compiling. --- build/Compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Compile.sh b/build/Compile.sh index d709ee5f..c5699971 100755 --- a/build/Compile.sh +++ b/build/Compile.sh @@ -16,7 +16,7 @@ else BUILD_CONF=release_x86; fi -$PREMAKE --file=$CUR_DIR/premake5.lua gmake +$PREMAKE --file=$CUR_DIR/premake5.lua gmake "$@" config=$BUILD_CONF make -C $CUR_DIR/gmake/ BUILD_CONF_DIR="$(tr '[:lower:]' '[:upper:]' <<< ${BUILD_CONF:0:1})${BUILD_CONF:1}"