]>
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 | ||
10 | # directory storing the final build files | |
11 | DIST_DIR=../deliver | |
12 | ||
13 | # directory to store the wx tree we pull from CVS | |
14 | WX_TEMP_DIR=/tmp/wx-temp | |
a4b57b1d | 15 | DOCDIR=${WX_TEMP_DIR}/wxWidgets/docs/ |
03a2668f | 16 | |
759f0e41 CE |
17 | CURDATE=`date -I` |
18 | ||
03a2668f | 19 | # build info |
6ff2b437 | 20 | BUILD_VERSION=2.7.2-rc1 |
03a2668f KO |
21 | BUILD_TAG=HEAD |
22 | ||
403aad79 | 23 | |
759f0e41 CE |
24 | if [ "$KIND" = "release" ]; then |
25 | FTPDIR=/home/ftp/pub/${BUILD_VERSION} | |
26 | else | |
27 | KIND=daily | |
28 | BUILD_VERSION=${CURDATE} | |
29 | FTPDIR=/home/ftp/pub/CVS_HEAD/v2 | |
30 | fi | |
03a2668f | 31 | |
759f0e41 CE |
32 | echo "Building for ${BUILD_VERSION}" |
33 | ||
03a2668f KO |
34 | # Default build settings |
35 | skipwin=no | |
36 | skipmac=no | |
37 | skiplinux=no | |
38 | setup_msvc_for_cygwin=yes | |
39 | ||
40 | # this can take time too, so turn it off if we know we don't need to. | |
403aad79 | 41 | rebake=yes |
03a2668f KO |
42 | |
43 | # If building is successful, delete temp files? | |
759f0e41 CE |
44 | delete_temps=no |
45 |