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