Add cx_Freeze and Installer examples

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27485 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-05-28 19:13:42 +00:00
parent 0e174ce890
commit 81457c860f
5 changed files with 46 additions and 9 deletions

View File

@@ -19,13 +19,21 @@ and much more.
this command to build the .exe and collect the
other needed files:
python setup.py py2exe -w
python setup.py py2exe
superdoodle.iss An InnoSetup script to build a self-installer of
the superdoodle standalone executable. You can
get InnoSetup from http://www.jrsoftware.org/.
You may have to edit this file to make it work
for your environment and python installation.
superdoodle.iss NOTE: This .iss file needs updating!
An InnoSetup script to build a self-installer of
the superdoodle standalone executable created
with py2exe. You can get InnoSetup from
http://www.jrsoftware.org/. You may have to edit
this file to make it work for your environment
and python installation.
cxfreeze.bat An example of creating an executable with the
cx_Freeze utility, downloadable from
http://starship.python.net/crew/atuining/cx_Freeze/
installer.bat An example of creating an executable with Gordon
McMillan's Installer utility.