hi-client/windows/copy_dlls.bat
speakeloudest 46295f4543
All checks were successful
Build Windows / 编译 libcore (Windows) (20.15.1) (push) Successful in 29m17s
Build Windows / build (push) Successful in 7h8m10s
feat: 修改windows构建
2025-11-13 05:24:35 -08:00

13 lines
371 B
Batchfile
Executable File

@echo off
set "DLL_DIR=%~dp0build\runner\Release"
set "VC_REDIST_DIR=C:\Windows\System32"
echo 正在复制必要的 DLL 文件...
copy "%VC_REDIST_DIR%\msvcp140.dll" "%DLL_DIR%"
copy "%VC_REDIST_DIR%\vcruntime140.dll" "%DLL_DIR%"
copy "%VC_REDIST_DIR%\vcruntime140_1.dll" "%DLL_DIR%"
copy "%~dp0..\libcore\libcore.dll" "%DLL_DIR%"
echo DLL 文件复制完成!
pause