Add new utility setup scripts

This commit is contained in:
Dan Paulat 2025-05-25 13:45:00 -05:00
parent 9c486d5018
commit 102650e936
26 changed files with 281 additions and 143 deletions

View file

@ -0,0 +1,26 @@
@set script_dir=%~dp0
:: Import common paths
@call lib\common-paths.bat
:: Install Python packages
pip install --upgrade -r "%script_dir%\..\..\requirements.txt"
@if defined build_type (
:: Install Conan profile and packages
call lib\setup-conan.bat
) else (
:: Install Conan profile and debug packages
set build_type=Debug
call lib\setup-conan.bat
:: Install Conan profile and release packages
set build_type=Release
call lib\setup-conan.bat
:: Unset build_type
set build_type=
)
:: Run CMake Configure
@call lib\run-cmake-configure.bat