d7463f75f9
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21083 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
145 lines
5.4 KiB
Plaintext
145 lines
5.4 KiB
Plaintext
### List of variables for the purposes of generating an application's
|
|
### setup.exe
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The application name
|
|
#-------------------------------------------------------------------------
|
|
|
|
APPNAME=wxconfigtool
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The application title
|
|
#-------------------------------------------------------------------------
|
|
|
|
APPTITLE="wxWindows Configuration Tool"
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The application author (copyright holder)
|
|
#-------------------------------------------------------------------------
|
|
|
|
AUTHOR="Julian Smart"
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The application vendor (organisation)
|
|
#-------------------------------------------------------------------------
|
|
|
|
VENDOR="Anthemion Software"
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The application data file extension
|
|
#-------------------------------------------------------------------------
|
|
|
|
APPEXTENSION=wxs
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The symbol to use when querying for the version number
|
|
#-------------------------------------------------------------------------
|
|
|
|
VERSIONSYMBOL=ctVERSION_NUMBER
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The top-level directory of the application source tree
|
|
#-------------------------------------------------------------------------
|
|
|
|
APPDIR=c:/wx2dev/wxWindows/utils/configtool
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The destination directory of the setup
|
|
#-------------------------------------------------------------------------
|
|
|
|
DESTDIR=$APPDIR/deliver
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The temporary image directory to use when preparing the setup
|
|
#-------------------------------------------------------------------------
|
|
|
|
SETUPIMAGEDIR=$APPDIR/deliver/image
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The name of the file with $VERSIONSYMBOL in it
|
|
#-------------------------------------------------------------------------
|
|
|
|
VERSIONSYMBOLFILE=$APPDIR/src/symbols.h
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The locations of the project's Inno Setup header and footer files
|
|
#-------------------------------------------------------------------------
|
|
|
|
INNOTOP=$APPDIR/scripts/innotop.txt
|
|
INNOBOTTOM=$APPDIR/scripts/innobott.txt
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The location of the generated setup script
|
|
#-------------------------------------------------------------------------
|
|
|
|
SETUPSCRIPTNAME=$DESTDIR/$APPNAME.iss
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The locations of the readme and license files
|
|
#-------------------------------------------------------------------------
|
|
|
|
READMEFILE=$APPDIR/docs/readme.txt
|
|
READMEAFTERFILE=$APPDIR/docs/readme-after.txt
|
|
LICENSEFILE=$APPDIR/docs/licence.txt
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The binary to include in the setup
|
|
#-------------------------------------------------------------------------
|
|
|
|
APPBINARY=$APPDIR/src/ReleaseStable/$APPNAME.exe
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The location of the setup compiler
|
|
#-------------------------------------------------------------------------
|
|
|
|
SETUPCOMPILER="c:/Program Files/Inno Setup 2/compil32.exe"
|
|
|
|
#-------------------------------------------------------------------------
|
|
# Whether we will compress the binary (0 or 1).
|
|
# Use --upx or --no-upx to override this default value.
|
|
#-------------------------------------------------------------------------
|
|
|
|
UPX=0
|
|
|
|
#-------------------------------------------------------------------------
|
|
# Whether we will make a manual (0 or 1)
|
|
# Use --make-manual or --no-make-manual to override this default value.
|
|
#-------------------------------------------------------------------------
|
|
|
|
MAKEMANUAL=1
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The manual filename(s)
|
|
#-------------------------------------------------------------------------
|
|
|
|
MANUALFILES="$APPDIR/docs/manual/configtool.chm $APPDIR/docs/manual/configtool.htb"
|
|
WXMANUALCHM="$APPDIR/../../docs/htmlhelp/wx.chm"
|
|
WXMANUALHTB="$APPDIR/../../docs/htb/wx.htb"
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The directory containing the manual source. We assume
|
|
# that there is a Makefile in this directory for making the
|
|
# manual.
|
|
#-------------------------------------------------------------------------
|
|
|
|
MANUALDIR=$APPDIR/docs/manual
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The resources file to compile, if any (e.g. myapp.bin).
|
|
# This is just a zip containing files to be used by the
|
|
# application, usually stored in src/resources.
|
|
#
|
|
# If this is left empty, no resources will be compiled.
|
|
#-------------------------------------------------------------------------
|
|
|
|
#RESOURCESFILE=${APPNAME}.bin
|
|
|
|
#-------------------------------------------------------------------------
|
|
# The directory containing the resources.
|
|
#
|
|
# If this is left empty, no resources will be compiled.
|
|
#-------------------------------------------------------------------------
|
|
|
|
RESOURCESDIR=$APPDIR/src/resources
|
|
|