Browse Source

All arguments passed to `build/Compile.sh` are passed to premake.

Allows more fine-grained build customization when using this shellscript for compiling.
pull/1022/head
Rokas Kupstys 8 years ago
parent
commit
e5bc151c78
  1. 2
      build/Compile.sh

2
build/Compile.sh

@ -16,7 +16,7 @@ else @@ -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}"

Loading…
Cancel
Save