2006-03-02 15:23:54 -05:00
|
|
|
# This config file format allows for different people to store their own
|
|
|
|
# build environment settings. If you want to make considerable changes, then
|
|
|
|
# you should create your own settings file and specify that to create-release.sh.
|
|
|
|
|
|
|
|
|
|
|
|
# the local spot that we put everything when done, before possibly copying
|
|
|
|
# to remote hosts
|
|
|
|
STAGING_DIR=./BUILD
|
|
|
|
|
|
|
|
# directory storing the final build files
|
|
|
|
DIST_DIR=../deliver
|
|
|
|
|
|
|
|
# directory to store the wx tree we pull from CVS
|
|
|
|
WX_TEMP_DIR=/tmp/wx-temp
|
2006-07-19 06:31:08 -04:00
|
|
|
DOCDIR=${WX_TEMP_DIR}/wxWidgets/docs/
|
2006-03-02 15:23:54 -05:00
|
|
|
|
2006-07-18 02:56:23 -04:00
|
|
|
CURDATE=`date -I`
|
|
|
|
|
2006-03-02 15:23:54 -05:00
|
|
|
# build info
|
2007-01-10 08:40:28 -05:00
|
|
|
BUILD_VERSION=2.8.2
|
2006-03-02 15:23:54 -05:00
|
|
|
BUILD_TAG=HEAD
|
|
|
|
|
2006-03-07 01:15:25 -05:00
|
|
|
|
2006-07-18 02:56:23 -04:00
|
|
|
if [ "$KIND" = "release" ]; then
|
|
|
|
FTPDIR=/home/ftp/pub/${BUILD_VERSION}
|
|
|
|
else
|
|
|
|
KIND=daily
|
|
|
|
BUILD_VERSION=${CURDATE}
|
|
|
|
FTPDIR=/home/ftp/pub/CVS_HEAD/v2
|
|
|
|
fi
|
2006-03-02 15:23:54 -05:00
|
|
|
|
2006-07-18 02:56:23 -04:00
|
|
|
echo "Building for ${BUILD_VERSION}"
|
|
|
|
|
2006-03-02 15:23:54 -05:00
|
|
|
# Default build settings
|
|
|
|
skipwin=no
|
|
|
|
skipmac=no
|
|
|
|
skiplinux=no
|
|
|
|
setup_msvc_for_cygwin=yes
|
|
|
|
|
|
|
|
# this can take time too, so turn it off if we know we don't need to.
|
2006-03-07 01:15:25 -05:00
|
|
|
rebake=yes
|
2006-03-02 15:23:54 -05:00
|
|
|
|
|
|
|
# If building is successful, delete temp files?
|
2006-07-18 02:56:23 -04:00
|
|
|
delete_temps=no
|
|
|
|
|