]>
Commit | Line | Data |
---|---|---|
1 | # This config file format allows for different people to store their own | |
2 | # build environment settings. If you want to make considerable changes, then | |
3 | # you should create your own settings file and specify that to create-release.sh. | |
4 | ||
5 | ||
6 | # the local spot that we put everything when done, before possibly copying | |
7 | # to remote hosts | |
8 | STAGING_DIR=./BUILD | |
9 | ||
10 | # directory to store the wx tree we pull from CVS | |
11 | WX_TEMP_DIR=/tmp/wx-temp | |
12 | SCRIPTDIR=`dirname $0` | |
13 | WX_WEB_DIR=$WX_TEMP_DIR/wxWebSite | |
14 | WX_SRC_DIR=$WX_TEMP_DIR/wxWidgets | |
15 | DOCDIR=${WX_TEMP_DIR}/wxWidgets/docs/ | |
16 | # don't make this a subdir of wxWidgets... (or tar will bite recursively) | |
17 | DIST_DIR=${WX_TEMP_DIR}/deliver | |
18 | ||
19 | echo "temp dir is $WX_TEMP_DIR" | |
20 | echo script dir is $SCRIPTDIR | |
21 | CURDATE=`date -I` | |
22 | ||
23 | # build info | |
24 | BUILD_VERSION=2.9.0 | |
25 | BUILD_TAG=HEAD | |
26 | ||
27 | if [ "$KIND" = "release" ]; then | |
28 | FTPDIR=/home/ftp/pub/${BUILD_VERSION} | |
29 | else | |
30 | KIND=daily | |
31 | BUILD_VERSION=${CURDATE} | |
32 | FTPDIR=/home/ftp/pub/Daily_HEAD | |
33 | fi | |
34 | ||
35 | echo "Building for ${BUILD_VERSION}" | |
36 | ||
37 | # Default build settings | |
38 | skipwin=no | |
39 | skipmac=no | |
40 | skiplinux=no | |
41 | setup_msvc_for_cygwin=yes | |
42 | ||
43 | # this can take time too, so turn it off if we know we don't need to. | |
44 | rebake=yes | |
45 | ||
46 | # If building is successful, delete temp files? | |
47 | delete_temps=no | |
48 |