Files
dl/build/library/拷贝dl库.bat
T
2026-09-16 14:07:40 +08:00

25 lines
851 B
Batchfile
Vendored

echo off
set PATH_SRC=..\..
rd .\dll /s /q
rd .\include /s /q
rd .\lib /s /q
set PATH_INSTALL=%PATH_SRC%\out\install
xcopy %PATH_INSTALL%\x86-debug\include .\include\x86\debug /s /e /i /y
xcopy %PATH_INSTALL%\x64-debug\include .\include\x64\debug /s /e /i /y
xcopy %PATH_INSTALL%\x86-release\include .\include\x86\release /s /e /i /y
xcopy %PATH_INSTALL%\x64-release\include .\include\x64\release /s /e /i /y
xcopy %PATH_INSTALL%\x86-debug\lib\*.lib .\lib\x86\debug /s /e /i /y
xcopy %PATH_INSTALL%\x64-debug\lib\*.lib .\lib\x64\debug /s /e /i /y
xcopy %PATH_INSTALL%\x86-release\lib\*.lib .\lib\x86\release /s /e /i /y
xcopy %PATH_INSTALL%\x64-release\lib\*.lib .\lib\x64\release /s /e /i /y
set PATH_VLD=%PATH_SRC%\third\vld
xcopy %PATH_VLD%\bin\Win32\ .\bin\x86\debug /s /e /i /y
xcopy %PATH_VLD%\bin\Win64\ .\bin\x64\debug /s /e /i /y
pause