cc669f240b
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52924 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
28 lines
462 B
C++
28 lines
462 B
C++
|
|
UNIVERSAL=0
|
|
WXPYTHON=0
|
|
UNICODE=0
|
|
DEBUG=0
|
|
CARBON=1
|
|
PORT="mac"
|
|
STATIC=0
|
|
|
|
# Process command line options.
|
|
for i in "$@"; do
|
|
case "$i" in
|
|
unicode) UNICODE=1 ;;
|
|
ansi) UNICODE=0 ;;
|
|
debug) DEBUG=1 ;;
|
|
wxpython) WXPYTHON=1 ;;
|
|
universal) UNIVERSAL=1 ;;
|
|
carbon) PORT="mac" ;;
|
|
cocoa) PORT="cocoa" ;;
|
|
static) STATIC=1 ;;
|
|
*)
|
|
usage
|
|
exit
|
|
;;
|
|
esac
|
|
done
|
|
|
|
OTHER_OPTS="--with-$PORT " |