From 8254622d4fc27eed0f42bdf980464a5dc9b322c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B1=85=E6=88=8E=E6=B0=8F?= Date: Sat, 10 Jun 2023 21:46:39 +0800 Subject: [PATCH] build(install-boost.bat): default to boost 1.78 --- env.bat.template | 2 +- env.vs2019.bat | 2 +- env.vs2022.bat | 2 +- install-boost.bat | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/env.bat.template b/env.bat.template index bfcbad849..6a3b74695 100644 --- a/env.bat.template +++ b/env.bat.template @@ -3,7 +3,7 @@ rem Customize your build environment and save the modified copy to env.bat set RIME_ROOT=%CD% rem REQUIRED: path to Boost source directory -if not defined BOOST_ROOT set BOOST_ROOT=%RIME_ROOT%\deps\boost_1_76_0 +if not defined BOOST_ROOT set BOOST_ROOT=%RIME_ROOT%\deps\boost_1_78_0 rem OPTIONAL: architecture, Visual Studio version and platform toolset rem set ARCH=Win32 diff --git a/env.vs2019.bat b/env.vs2019.bat index 78ba9a6e6..370054f66 100644 --- a/env.vs2019.bat +++ b/env.vs2019.bat @@ -3,7 +3,7 @@ rem Customize your build environment and save the modified copy to env.bat set RIME_ROOT=%CD% rem REQUIRED: path to Boost source directory -if not defined BOOST_ROOT set BOOST_ROOT=%RIME_ROOT%\deps\boost_1_76_0 +if not defined BOOST_ROOT set BOOST_ROOT=%RIME_ROOT%\deps\boost_1_78_0 rem OPTIONAL: architecture, Visual Studio version and platform toolset set ARCH=Win32 diff --git a/env.vs2022.bat b/env.vs2022.bat index 8961c9668..82d6e5cf9 100644 --- a/env.vs2022.bat +++ b/env.vs2022.bat @@ -3,7 +3,7 @@ rem Customize your build environment and save the modified copy to env.bat set RIME_ROOT=%CD% rem REQUIRED: path to Boost source directory -if not defined BOOST_ROOT set BOOST_ROOT=%RIME_ROOT%\deps\boost_1_76_0 +if not defined BOOST_ROOT set BOOST_ROOT=%RIME_ROOT%\deps\boost_1_78_0 rem OPTIONAL: architecture, Visual Studio version and platform toolset set ARCH=Win32 diff --git a/install-boost.bat b/install-boost.bat index c372f078d..63650cc59 100644 --- a/install-boost.bat +++ b/install-boost.bat @@ -2,7 +2,7 @@ setlocal if not defined RIME_ROOT set RIME_ROOT=%CD% -if not defined boost_version set boost_version=1.76.0 +if not defined boost_version set boost_version=1.78.0 set boost_x_y_z=%boost_version:.=_% if not defined BOOST_ROOT set BOOST_ROOT=%RIME_ROOT%\deps\boost_%boost_x_y_z%