]>
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 | ||
5 | # host name of the machine to use for windows builds | |
403aad79 | 6 | WIN_HOST=192.168.1.104 |
03a2668f KO |
7 | |
8 | # Where is the build dir from the remote machine's perspective? | |
403aad79 | 9 | WIN_BUILD=/cygdrive/c/wx2dev |
03a2668f | 10 | |
403aad79 | 11 | LINUX_HOST=192.168.1.105 |
03a2668f | 12 | |
403aad79 KO |
13 | LINUX_BUILD=~/wx2dev |
14 | ||
15 | MAC_HOST=192.168.1.103 | |
16 | ||
17 | MAC_BUILD=~/wx2dev | |
03a2668f KO |
18 | |
19 | # the local spot that we put everything when done, before possibly copying | |
20 | # to remote hosts | |
21 | STAGING_DIR=./BUILD | |
22 | ||
23 | # directory storing the final build files | |
24 | DIST_DIR=../deliver | |
25 | ||
26 | # directory to store the wx tree we pull from CVS | |
27 | WX_TEMP_DIR=/tmp/wx-temp | |
28 | ||
29 | # build info | |
30 | BUILD_VERSION=2.7.0 | |
31 | BUILD_TAG=HEAD | |
32 | ||
403aad79 KO |
33 | KIND=daily |
34 | ||
35 | ### Windows defines ### | |
03a2668f KO |
36 | |
37 | # so we can setup the Windows dev environment if it is not already done | |
38 | MSVS7_DIR="C:/Program Files/Microsoft Visual Studio 2003" | |
403aad79 KO |
39 | NET_FrameworkDir="C:/Windows/Microsoft.NET/Framework" |
40 | ||
41 | MSVS6_DIR="C:/Program Files/Microsoft Visual Studio" | |
42 | MSPSDK_DIR="C:/Program Files/Microsoft Platform SDK" | |
43 | ||
44 | ### End Windows defines ### | |
03a2668f KO |
45 | |
46 | # Default build settings | |
47 | skipwin=no | |
48 | skipmac=no | |
49 | skiplinux=no | |
50 | setup_msvc_for_cygwin=yes | |
51 | ||
52 | # this can take time too, so turn it off if we know we don't need to. | |
403aad79 | 53 | rebake=yes |
03a2668f KO |
54 | |
55 | # If building is successful, delete temp files? | |
403aad79 | 56 | delete_temps=no |