Sfoglia il codice sorgente

Some scripts to build the exe

Chris Brunner 14 anni fa
parent
commit
a621cd3722

+ 3 - 0
contrib/src/panda3dtoolsgui/build_exe.bat

@@ -0,0 +1,3 @@
+python setup.py py2exe
+
+explorer .\dist

+ 4 - 0
contrib/src/panda3dtoolsgui/setup.py

@@ -0,0 +1,4 @@
+from distutils.core import setup
+import py2exe
+
+setup(console=['Panda3DToolsGUI.py'])