From 47b37e4be4c6c842dcc6f7d5a12bda8a9eec5a0d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 8 May 2001 19:27:48 +0000 Subject: [PATCH] Smoe more details for the setup and installer scripts git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10063 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/samples/doodle/setup.py | 8 ++++++-- wxPython/samples/doodle/superdoodle.iss | 11 +++++++++-- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/wxPython/samples/doodle/setup.py b/wxPython/samples/doodle/setup.py index 460ccbd34f..7cc054efb5 100644 --- a/wxPython/samples/doodle/setup.py +++ b/wxPython/samples/doodle/setup.py @@ -1,8 +1,12 @@ -# # A distutils script to make a standalone .exe of superdoodle for -# Windows platforms. +# Windows platforms. You can get py2exe from +# http://py2exe.sourceforge.net/. Use this command to build the .exe +# and collect the other needed files: +# +# python setup.py py2exe # + from distutils.core import setup import py2exe diff --git a/wxPython/samples/doodle/superdoodle.iss b/wxPython/samples/doodle/superdoodle.iss index 45919a5cb4..9a15653488 100644 --- a/wxPython/samples/doodle/superdoodle.iss +++ b/wxPython/samples/doodle/superdoodle.iss @@ -1,3 +1,10 @@ +;; An InnoSetup script to build a self-installer of the superdoodle standalone +;; executable produced from setup.py. 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. +;; + + [Setup] AppName = SuperDoodle AppVerName = SuperDoodle 1.0 @@ -13,8 +20,8 @@ AppPublisherURL = http://wxPython.org/ [Files] -Source: "c:\WINNT\SYSTEM32\MSVCRT.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: sharedfile uninsneveruninstall; -Source: "c:\WINNT\SYSTEM32\MSVCIRT.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: sharedfile uninsneveruninstall; +Source: "c:\WINNT\SYSTEM32\MSVCRT.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: sharedfile uninsneveruninstall restartreplace; +Source: "c:\WINNT\SYSTEM32\MSVCIRT.dll"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; Flags: sharedfile uninsneveruninstall restartreplace; Source: "dist\superdoodle\superdoodle.exe"; DestDir: "{app}"; Source: "dist\superdoodle\_sre.pyd"; DestDir: "{app}"; Source: "dist\superdoodle\htmlc.pyd"; DestDir: "{app}"; -- 2.45.2