This commit is contained in:
2026-02-20 12:18:52 +08:00
parent ab7ee978e7
commit c5d109e9be
18 changed files with 1444 additions and 567 deletions

26
clean.bat Normal file
View File

@@ -0,0 +1,26 @@
@echo off
echo ======================================
echo Cleaning build output...
echo ======================================
echo.
if exist build_x86 (
echo Removing build_x86...
rmdir /s /q build_x86
)
if exist build_x64 (
echo Removing build_x64...
rmdir /s /q build_x64
)
if exist lib (
echo Removing lib...
rmdir /s /q lib
)
echo.
echo ======================================
echo Clean completed!
echo ======================================
pause