Ajout de frère-jacques.
[minwii.git] / setup_win_exe.py
index 86702fc..e122fef 100755 (executable)
@@ -43,15 +43,18 @@ def findPguThemesDir() :
         if os.path.isdir(dname):
             return dname
     raise IOError('pgu themes folder not found')
-    
+
+def findMinwiiDir() :
+    import minwii
+    return os.path.dirname(minwii.__file__)
 
 class MinWii2exe(py2exe.build_exe.py2exe) :
     def copy_extensions(self, extensions) :
         py2exe.build_exe.py2exe.copy_extensions(self, extensions)
-        
-        self.copyDataFiles('src/minwii/fonts', 'minwii/fonts')
-        self.copyDataFiles('src/minwii/soundfonts', 'minwii/soundfonts')
-        self.copyDataFiles('src/minwii/widgets/data', 'minwii/widgets/data')
+        minwiiDir = findMinwiiDir()
+        self.copyDataFiles(os.path.join(minwiiDir, 'fonts'), 'minwii/fonts')
+        self.copyDataFiles(os.path.join(minwiiDir, 'soundfonts'), 'minwii/soundfonts')
+        self.copyDataFiles(os.path.join(minwiiDir, 'widgets', 'data'), 'minwii/widgets/data')
         self.copyDataFiles(findPguThemesDir(), 'data/themes')
 
         pygamedir = os.path.dirname(pygame.base.__file__)
@@ -85,7 +88,7 @@ class MinWii2exe(py2exe.build_exe.py2exe) :
 class BuildExe:
     def __init__(self):
         #Name of starting .py
-        self.script = "src/minwii/minwii_fullscreen.py"
+        #self.script = "src/minwii/runminwii.py"
 
         #Name of program
         self.project_name = "MINWii"
@@ -152,12 +155,18 @@ class BuildExe:
 
             # targets to build
             windows = [{
-                'script': self.script,
+                'script': "src/minwii/runminwii.py",
                 'icon_resources': [(0, self.icon_file)],
                 'copyright': self.copyright
-            }],
-            #console = [self.script],
-            options = {'py2exe': {'optimize': 2,
+                },
+                {
+                'script' : "src/minwii/logapp.py",
+                'icon_resources': [(0, 'logapp.ico')],
+                'copyright' : self.copyright
+                }
+                ],
+            #console = ["src/minwii/logapp.py"],
+            options = {'py2exe': {'optimize': 1,
                                   'bundle_files': 3,
                                   #'compressed': True,
                                   #'excludes': self.exclude_modules,