witten
/
luminotes
Archived
1
0
Fork 0

Changed from a console app to a Windows "GUI" app to prevent a big console box from popping up when the app is run.

This commit is contained in:
Dan Helfman 2008-08-21 22:36:57 -07:00
parent ad6de74604
commit f6031b1cc3
1 changed files with 3 additions and 3 deletions

View File

@ -19,10 +19,10 @@ class Luminotes( Distribution ):
self.ctypes_com_server = []
self.com_server = []
self.services = []
self.windows = []
self.windows = [ "luminotes.py" ]
self.console = []
self.service = []
self.isapi = []
self.console = [ "luminotes.py" ]
self.zipfile = "lib\luminotes.zip"
Distribution.__init__( self, attrs )
@ -158,7 +158,7 @@ try:
script = InnoScript("Luminotes",
lib_dir,
dist_dir,
self.console_exe_files,
self.windows_exe_files,
self.lib_files,
version = VERSION)
print "*** creating the inno setup script***"