mirror of
https://github.com/LHY0125/PathEditor.git
synced 2026-05-10 02:09:46 +08:00
575fcca5c4
- 将列表、按钮等UI创建代码从main.c移至ui.c/ui.h - 添加Windows UIPI消息过滤以支持管理员模式下的文件拖拽 - 更新Makefile和构建脚本以包含新的UI模块 - 清理旧的备份注册表文件并更新README文档
15 lines
334 B
Batchfile
15 lines
334 B
Batchfile
@echo off
|
|
echo Copying DLLs...
|
|
if not exist bin mkdir bin
|
|
copy /Y "libs\iup-3.31_Win64_dllw6_lib\*.dll" bin\
|
|
|
|
echo Building Installer...
|
|
"D:\Program Files (x86)\Inno Setup 6\ISCC.exe" "dist\installer.iss"
|
|
|
|
if %ERRORLEVEL% NEQ 0 (
|
|
echo Installer build failed!
|
|
exit /b %ERRORLEVEL%
|
|
)
|
|
|
|
echo Done! Installer is in dist\dist\
|
|
pause |