first commit

This commit is contained in:
bing
2026-04-03 11:32:07 +08:00
commit 003be19522
1142 changed files with 185854 additions and 0 deletions

13
install-deps-release.bat Normal file
View File

@@ -0,0 +1,13 @@
@echo off
echo ========================================
echo Installing Release dependencies
echo ========================================
conan install . --build=missing -s build_type=Release
if %errorlevel% neq 0 (
echo.
echo [ERROR] Conan install failed!
exit /b %errorlevel%
)
echo.
echo [SUCCESS] Release dependencies installed!
echo.