Debug builds are gone
parent
212e6d8fc1
commit
61a842ee43
|
|
@ -67,8 +67,8 @@ showUsage()
|
|||
echo " --config : Generate a new architecture-specific config"
|
||||
echo " --build : Build Firestorm"
|
||||
echo " --version : Update version number"
|
||||
echo " --chan [Release|Beta|Private] : Private is the default, sets channel"
|
||||
echo " --btype [Release|RelWithDebInfo|Debug] : Release is default, whether to use symbols"
|
||||
echo " --chan [Release|Beta|Private] : Private is the default, sets channel"
|
||||
echo " --btype [Release|RelWithDebInfo] : Release is default, whether to use symbols"
|
||||
echo " --kdu : Build with KDU"
|
||||
echo " --package : Build installer"
|
||||
echo " --no-package : Build without installer (Overrides --package)"
|
||||
|
|
@ -109,7 +109,7 @@ getArgs()
|
|||
config) WANTS_CONFIG=$TRUE;;
|
||||
version) WANTS_VERSION=$TRUE;;
|
||||
chan) CHANNEL="$OPTARG";;
|
||||
btype) if [ \( "$OPTARG" == "Release" \) -o \( "$OPTARG" == "RelWithDebInfo" \) -o \( "$OPTARG" == "Debug" \) ] ; then
|
||||
btype) if [ \( "$OPTARG" == "Release" \) -o \( "$OPTARG" == "RelWithDebInfo" \) ] ; then
|
||||
BTYPE="$OPTARG"
|
||||
fi
|
||||
;;
|
||||
|
|
|
|||
Loading…
Reference in New Issue