]>
Commit | Line | Data |
---|---|---|
81457c86 RD |
1 | |
2 | rem This script is an example of how to use cx_Freeze on a wxPython | |
3 | rem app to produce an executable. | |
4 | ||
5 | setlocal | |
6 | set CXDIR=c:\tools\cx_Freeze-2.2 | |
7 | rem set CXBASE=ConsoleBase.exe | |
8 | set CXBASE=Win32GUIBase.exe | |
9 | ||
10 | mkdir cxdist | |
11 | %CXDIR%\FreezePython.exe --base-binary %CXDIR%\%CXBASE% --install-dir cxdist superdoodle.py | |
12 | ||
13 | rem NOTE: Only the python DLL is copied to cxdist, you'll still need | |
14 | rem to copy the wxWidgets DLLs and any others that are needed... | |
15 | ||
16 | endlocal |