Files
UpAndDown/README.md
T

23 lines
1.1 KiB
Markdown

// Установка переменных для Conan
set "VS_DIR=C:\PROGRA~1\MICROS~2\2022\COMMUN~1"
set "VSCMD_INSTALL_DIR=%VS_DIR%"
set "VSCMD_VER=17.0"
set "VCToolsVersion=14.44.35207"
// Короткий путь для конфига
for %I in ("C:\Program Files\Microsoft Visual Studio\2022\Community") do echo %~sI
// Загрузка кастомных сценариев установки
conan export custom_recipes/boost/ --user=up_and_down --channel=stable
conan export custom_recipes/openssl_fix/ --user=up_and_down --channel=stable
conan export custom_recipes/lz4_fix/ --user=up_and_down --channel=stable
conan export custom_recipes/zlib_fix/ --user=up_and_down --channel=stable
conan export custom_recipes/zstd_fix/ --user=up_and_down --channel=stable
conan export custom_recipes/libmysqlclient_fix/ --user=up_and_down --channel=stable
// Запуск дебага
conan install . -pr ./profiles/debug_profile --output-folder=cmake-build-debug --build=missing
// Запуск релиза
conan install . -pr ./profiles/release_profile --output-folder=cmake-build-release --build=missing