加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
auto-build-trex.bat 911 Bytes
一键复制 编辑 原始数据 按行查看 历史
SUPER_紫电 提交于 2024-04-15 05:45 . 主目录文件
set "source=%cd%\"
cd..
set "dist=%cd%\cpyTREX-bin\"
if exist %dist% (
cd %dist%
if exist trex.exe (del /f/s/q trex.exe)
if exist trex32.exe (del /f/s/q trex32.exe)
if exist trex64.exe (del /f/s/q trex64.exe)
) else (mkdir %dist%)
cd %source%
set "py32=D:\Python\Python38-32\Scripts\"
if exist %py32% (
%py32%pyinstaller --noconfirm --onefile --console --paths "./uses" --distpath "../cpytrex-bin" "./trex.py"
del /f/s/q trex.spec
rd build /s/q
cd %dist%
ren trex.exe trex32.exe
cd %source%
)
pyinstaller --noconfirm --onefile --console --paths "./uses" --distpath "../cpytrex-bin" "./trex.py"
del /f/s/q trex.spec
rd build /s/q
if /i "%PROCESSOR_ARCHITECTURE%"=="AMD64" (
cd %dist%
ren trex.exe trex64.exe
)
copy %source%trex_ext.py %dist%trex_ext.py
copy %source%err_code.cfg %dist%err_code.cfg
copy %source%family_id.cfg %dist%family_id.cfg
start %dist%
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化