由于网上的资料比较零散,这里进行汇总一下。
boost下载地址如下:可以选择不同的版本Version 1.67.0https://www.boost.org/users/history/version_1_67_0.html
qt下载地址如下:
Index of /archive/qthttps://download.qt.io/archive/qt/一、环境变量设置
环境变量测试:在开始菜单找到qt下面的指令窗口,打开输入gcc -v
显示版本,说明环境是可以的。
一、编译boost源码为静态库
2、下载boost源码并解压(如boost_1_78_0.7z)
3、在cmd命令行进入boost_1_65_1/tools/build/src/engine
4、执行 build.bat gcc,在当前目录将会生成bin.ntx86文件夹,里面包含两个exe文件b2.exe,bjam.exe
5、将bin.ntx86\bjam.exe拷贝到E:\boost_1_65_1
6、在cmd命令行,进入boost目录,执行:b2 --toolset=gcc --stagedir=C:\Boost_1_78 address-model=64 --without-python link=shared runtime-link=shared runtime-link=shared install
等待一段时间,在指定目录D:\boost生成include和lib文件。
解释:
toolset=gcc 表示编译器平台这里用的是vs2008 如果用gcc可以改为toolset=msvc-9.0
link=shared shared 表示编译出动态库。如果要编译为静态库修改为link=static
address-- model=64 表示编译为64位,如果不写默认是32位。
threading=multi 表示支持多线程, 只支持单线程用single
runtime-link=shared 决定是静态还是动态链接C/C++库
–stagedir=stagedir 指定编译后存放位置
一、qt里面使用
在pro文件里添加
INCLUDEPATH += ..\\rapidjson-master\\include
INCLUDEPATH += ..\\websocketpp-master
INCLUDEPATH += C:\\Boost\\include\\boost-1_67
LIBS += C:\\Boost\\lib\\libboost_*.dll
LIBS += -lpthread libwsock32 libws2_32
参考链接:https://blog.csdn.net/ypy9323/article/details/78700826