加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install-boost.bat 572 Bytes
一键复制 编辑 原始数据 按行查看 历史
Qijia Liu 提交于 2023-08-20 22:03 . upgrade boost to 1.83 (#696)
setlocal
if not defined RIME_ROOT set RIME_ROOT=%CD%
if not defined boost_version set boost_version=1.83.0
set boost_x_y_z=%boost_version:.=_%
if not defined BOOST_ROOT set BOOST_ROOT=%RIME_ROOT%\deps\boost_%boost_x_y_z%
if exist "%BOOST_ROOT%\boost" goto boost_found
for %%I in ("%BOOST_ROOT%\.") do set src_dir=%%~dpI
rem download boost source
aria2c https://boostorg.jfrog.io/artifactory/main/release/%boost_version%/source/boost_%boost_x_y_z%.7z -d %src_dir%
pushd %src_dir%
7z x boost_%boost_x_y_z%.7z
popd
:boost_found
call .\build.bat boost
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化