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