forked from rime/librime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(build.bat): fix boost build, add config template for vs2019
update boost libraries for vs2019 support; use b2.exe instead of bjam.exe for recent versions of boost.
- Loading branch information
Showing
3 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
rem Customize your build environment and save the modified copy to env.bat | ||
|
||
set RIME_ROOT=%CD% | ||
|
||
rem REQUIRED: path to Boost source directory | ||
set BOOST_ROOT=C:\Libraries\boost_1_69_0 | ||
|
||
rem OPTIONAL: Visual Studio version and platform toolset | ||
set BJAM_TOOLSET=msvc-14.1 | ||
set CMAKE_GENERATOR="Visual Studio 15 2017" | ||
set PLATFORM_TOOLSET=v141_xp | ||
|
||
rem OPTIONAL: path to additional build tools | ||
rem set DEVTOOLS_PATH=%ProgramFiles%\Git\cmd;%ProgramFiles%\CMake\bin;C:\Python27; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
rem Customize your build environment and save the modified copy to env.bat | ||
|
||
set RIME_ROOT=%CD% | ||
|
||
rem REQUIRED: path to Boost source directory | ||
set BOOST_ROOT=C:\Libraries\boost_1_76_0 | ||
|
||
rem OPTIONAL: Visual Studio version and platform toolset | ||
set BJAM_TOOLSET=msvc-14.2 | ||
set CMAKE_GENERATOR="Visual Studio 16 2019" | ||
set PLATFORM_TOOLSET=v142 | ||
|
||
rem OPTIONAL: path to additional build tools | ||
rem set DEVTOOLS_PATH=%ProgramFiles%\Git\cmd;%ProgramFiles%\CMake\bin;C:\Python27; |