2025-03-18 19:19:03 -04:00

8 lines
148 B
Bash

# you can choose build type from cmd argument
if [ ! -z $1 ]
then
CCTYPE=$1
CCTYPE=${CCTYPE^} # capitalize first letter if it's not yet
fi