1 ### List of variables for the purposes of generating an application's
5 if [ "$OSTYPE" = "cygwin" ]; then
9 #-------------------------------------------------------------------------
10 # The application name
11 #-------------------------------------------------------------------------
15 #-------------------------------------------------------------------------
16 # The application title
17 #-------------------------------------------------------------------------
21 #-------------------------------------------------------------------------
22 # The application author (copyright holder)
23 #-------------------------------------------------------------------------
25 AUTHOR="The wxWidgets Team"
27 #-------------------------------------------------------------------------
28 # The application vendor (organisation)
29 #-------------------------------------------------------------------------
33 #-------------------------------------------------------------------------
34 # The application data file extension
35 #-------------------------------------------------------------------------
39 #-------------------------------------------------------------------------
40 # The symbol to use when querying for the version number (not used)
41 #-------------------------------------------------------------------------
43 VERSIONSYMBOL=wxVERSION
45 #-------------------------------------------------------------------------
46 # The top-level directory of the application source tree
47 #-------------------------------------------------------------------------
49 APPDIR=C:/wx2dev/wxWidgets
50 if [ ! $CYGPATH = "" ]; then
51 APPDIR=`$CYGPATH "$APPDIR"`
54 #-------------------------------------------------------------------------
55 # The destination directory of the setup
56 #-------------------------------------------------------------------------
58 DESTDIR=$APPDIR/deliver
60 #-------------------------------------------------------------------------
61 # The temporary image directory to use when preparing the setup
62 #-------------------------------------------------------------------------
64 SETUPIMAGEDIR=$APPDIR/deliver/wxWidgets-$VERSION
66 #-------------------------------------------------------------------------
67 # The name of the file with $VERSIONSYMBOL in it
68 #-------------------------------------------------------------------------
70 VERSIONSYMBOLFILE=$APPDIR/include/wx/version.h
72 #-------------------------------------------------------------------------
73 # The locations of the project's Inno Setup header and footer files
74 #-------------------------------------------------------------------------
76 INNOTOP=$APPDIR/distrib/msw/innotop.txt
77 INNOBOTTOM=$APPDIR/distrib/msw/innobott.txt
79 #-------------------------------------------------------------------------
80 # The location of the generated setup script
81 #-------------------------------------------------------------------------
83 SETUPSCRIPTNAME=$APPDIR/distrib/msw/wxwin2.iss
85 #-------------------------------------------------------------------------
86 # The locations of the readme and license files
87 #-------------------------------------------------------------------------
89 READMEFILE=$APPDIR/docs/readme.txt
90 READMEAFTERFILE=$APPDIR/docs/msw/install.txt
91 LICENSEFILE=$APPDIR/docs/licence.txt
93 #-------------------------------------------------------------------------
94 # The binary to include in the setup
95 #-------------------------------------------------------------------------
97 APPBINARY=$APPDIR/src/ReleaseStable/$APPNAME.exe
98 #APPBINARY=$APPDIR/src/ReleaseDev/$APPNAME.exe
100 #-------------------------------------------------------------------------
101 # The location of the setup compiler
102 #-------------------------------------------------------------------------
104 #SETUPCOMPILER="c:/Program Files/Inno Setup 4/compil32.exe"
105 SETUPCOMPILER="c:/Program Files/Inno Setup 5/compil32.exe"
106 if [ ! $CYGPATH = "" ]; then
107 SETUPCOMPILER=`$CYGPATH "$SETUPCOMPILER"`
110 #-------------------------------------------------------------------------
111 # Whether we will compress the binary (0 or 1).
112 # Use --upx or --no-upx to override this default value.
113 #-------------------------------------------------------------------------
117 #-------------------------------------------------------------------------
118 # Whether we will make a manual (0 or 1)
119 # Use --make-manual or --no-make-manual to override this default value.
120 #-------------------------------------------------------------------------
124 #-------------------------------------------------------------------------
125 # The manual filename(s)
126 #-------------------------------------------------------------------------
130 #-------------------------------------------------------------------------
131 # The directory containing the manual source. We assume
132 # that there is a Makefile in this directory for making the
134 #-------------------------------------------------------------------------
136 MANUALDIR=$APPDIR/docs
138 #-------------------------------------------------------------------------
139 # The resources file to compile, if any (e.g. myapp.bin).
140 # This is just a zip containing files to be used by the
141 # application, usually stored in src/resources.
143 # If this is left empty, no resources will be compiled.
144 #-------------------------------------------------------------------------
148 #-------------------------------------------------------------------------
149 # The directory containing the resources.
151 # If this is left empty, no resources will be compiled.
152 #-------------------------------------------------------------------------