14 lines
348 B
Batchfile
14 lines
348 B
Batchfile
@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.
|