vs2019配置boost1.7.0

1.如果选用vs2019开发环境,建议用boost1.7或以上版本,网上有说低于1.7.0的版本可能在vs2019中支持不完善,编译或运行时发生不可预料的bug,但我没有试过。

2.下载解压boost1.7

3.运行路径下的,大概意思初始化个安装环境,双击会3s左右自动退出。

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build

vs2019配置boost1.7.0_第1张图片vs2019配置boost1.7.0_第2张图片

4.运行批处理bootstrap.bat

cd F:\boost_1_70_0

bootstrap.bat

自动生成b2.exe

5.分别执行以下3条指令,大概5分钟后


.\b2.exe --toolset=msvc-14.2 architecture=x86 address-model=32 link=static --build-type=complete --with-system --with-thread --with-date_time --with-filesystem --with-serialization
.\b2.exe --toolset=msvc-14.2 architecture=x86 address-model=32 link=static --build-type=complete --with-system --with-thread --with-random --with-filesystem --with-serialization
.\b2.exe --toolset=msvc-14.2 architecture=x86 address-model=32 link=static --build-type=complete --with-system --with-thread --with-regex --with-filesystem --with-serialization

6.vs2019中配置如下

包含目录:f:\boost_1_70_0

附加库目录:F:\boost_1_70_0\stage\lib

done!

vs2019配置boost1.7.0_第3张图片

vs2019配置boost1.7.0_第4张图片

你可能感兴趣的:(C++)