]>
Commit | Line | Data |
---|---|---|
03a2668f KO |
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 | ||
03a2668f KO |
5 | |
6 | # the local spot that we put everything when done, before possibly copying | |
7 | # to remote hosts | |
8 | STAGING_DIR=./BUILD | |
9 | ||
03a2668f KO |
10 | # directory to store the wx tree we pull from CVS |
11 | WX_TEMP_DIR=/tmp/wx-temp | |
dc168f05 CE |
12 | SCRIPTDIR=`dirname $0` |
13 | WX_WEB_DIR=$WX_TEMP_DIR/wxWebSite | |
14 | WX_SRC_DIR=$WX_TEMP_DIR/wxWidgets | |
a4b57b1d | 15 | DOCDIR=${WX_TEMP_DIR}/wxWidgets/docs/ |
dc168f05 CE |
16 | # don't make this a subdir of wxWidgets... (or tar will bite recursively) |
17 | DIST_DIR=${WX_TEMP_DIR}/deliver | |
03a2668f | 18 | |
dc168f05 CE |
19 | echo "temp dir is $WX_TEMP_DIR" |
20 | echo script dir is $SCRIPTDIR | |
759f0e41 CE |
21 | CURDATE=`date -I` |
22 | ||
03a2668f | 23 | # build info |
7fd3acaf | 24 | BUILD_VERSION=2.9.0 |
03a2668f KO |
25 | BUILD_TAG=HEAD |
26 | ||
759f0e41 CE |
27 | if [ "$KIND" = "release" ]; then |
28 | FTPDIR=/home/ftp/pub/${BUILD_VERSION} | |
29 | else | |
30 | KIND=daily | |
31 | BUILD_VERSION=${CURDATE} | |
99bc6ea3 | 32 | FTPDIR=/home/ftp/pub/Daily_HEAD |
759f0e41 | 33 | fi |
03a2668f | 34 | |
759f0e41 CE |
35 | echo "Building for ${BUILD_VERSION}" |
36 | ||
03a2668f KO |
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. | |
403aad79 | 44 | rebake=yes |
03a2668f KO |
45 | |
46 | # If building is successful, delete temp files? | |
759f0e41 CE |
47 | delete_temps=no |
48 |