git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35648
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
PY_VERSION=$1
shift
+unicode=no
+debug=no
+
+for flag in $*; do
+ case ${flag} in
+ debug) debug=yes ;;
+ unicode) unicode=yes ;;
+ esac
+done
+
if [ "$WXWIN" = "" ]; then
export WXWIN=`pwd`/../..
fi
# remove old build files
rm -rf vc_msw*
UNI=
- if [ "$UNICODE" != "" ]; then
+ if [ $unicode = yes ]; then
UNI=-uni
fi
./.make hybrid$UNI
if [ "$DEBUG" != "" ]; then
DEBUG_FLAG=--debug
fi
- if [ "$UNICODE" != "" ]; then
+ if [ $unicode = yes ]; then
UNICODE_FLAG="UNICODE=1"
fi
b $PY_VERSION h $DEBUG_FLAG $UNICODE_FLAG
fi
UNICODE_OPT=
- if [ "$UNICODE" = "1" ]; then
+ if [ $unicode = yes ]; then
UNICODE_OPT=unicode
fi