cxfreeze.bat

来自「Wxpython Implemented on Windows CE, Sou」· Batch 代码 · 共 17 行

BAT
17
字号

rem   This script is an example of how to use cx_Freeze on a wxPython 
rem   app to produce an executable.

setlocal
set CXDIR=c:\tools\cx_Freeze-2.2
rem set CXBASE=ConsoleBase.exe
set CXBASE=Win32GUIBase.exe

mkdir cxdist
%CXDIR%\FreezePython.exe --base-binary %CXDIR%\%CXBASE% --install-dir cxdist superdoodle.py

rem NOTE: Only the python DLL is copied to cxdist, you'll still need
rem       to copy the wxWidgets DLLs and any others that are needed...

endlocal

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?