Initial implementation of wxWidgets build scripts for Mac and Unix. To run tests, just run dobuilds in mac and unix dirs.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38996 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Ollivier
2006-05-03 04:36:17 +00:00
parent 1646ae2229
commit 3d23c9b7d9
7 changed files with 323 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
if [ "$INSTALLDIR" = "" ]; then
INSTALLDIR=$BUILDDIR/install
mkdir -p $INSTALLDIR
fi
# wxPython needs this option so that it can build extensions that store the
# right install_name (e.g. /usr/local/lib) even if the files aren't actually
# in /usr/local/lib at the time they're being linked against
# we do this by setting the "official" prefix at build time, and later
if [ "$BUILDPREFIX" = "" ]; then
BUILDPREFIX=$INSTALLDIR
fi
DEBUG_OPTS="--enable-debug"
UNICODE_OPTS="--enable-unicode"
ANSI_OPTS="--enable-ansi"
WXPYTHON_OPTS="--enable-monolithic \
--with-opengl \
--enable-sound \
--enable-display \
--enable-geometry \
--enable-debug_flag \
--enable-optimise \
--disable-debugreport "
do_build(){
OPTS=""
if [ "$WXPYTHON" == "1" ]; then
OPTS="$WXPYTHON_OPTS"
fi
if [ "$DEBUG" == "1" ]; then
OPTS="$OPTS $DEBUG_OPTS "
fi
if [ "$UNICODE" == "1" ]; then
OPTS="$OPTS $UNICODE_OPTS "
fi
if [ "$STATIC" == "1" ]; then
OPTS="$OPTS --enable-static"
fi
OPTS="$OPTS $OTHER_OPTS"
$WXROOT/configure --prefix=$BUILDPREFIX $OPTS
make
# build the libs wxPython needs
if [ "$WXPYTHON" == "1" ]; then
make -C contrib/src/animate
make -C contrib/src/gizmos
make -C contrib/src/stc
fi
}