初始化内容

This commit is contained in:
2026-09-16 14:07:40 +08:00
parent 6934b390bf
commit 4f643c1e7c
18350 changed files with 6088489 additions and 305 deletions
+25
View File
@@ -0,0 +1,25 @@
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