]> git.saurik.com Git - wxWidgets.git/commitdiff
Smoe more details for the setup and installer scripts
authorRobin Dunn <robin@alldunn.com>
Tue, 8 May 2001 19:27:48 +0000 (19:27 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 8 May 2001 19:27:48 +0000 (19:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10063 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/samples/doodle/setup.py
wxPython/samples/doodle/superdoodle.iss

index 460ccbd34f0738e625b38c8b4affe7fd2487b4b7..7cc054efb5975aa2cd9092b237c84a784b7f50a4 100644 (file)
@@ -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
 
index 45919a5cb47fc329c9bb612a98e102618657909d..9a156534886a281d2d1f6fd04d0b3edba7fbba73 100644 (file)
@@ -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}";