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