Qt中使用Boost
Posted 朝闻道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt中使用Boost相关的知识,希望对你有一定的参考价值。
编译BOOST库
bjam stage --toolset=qcc --without-graph --without-graph_parallel --without-math --without-mpi --without-python --without-serialization --without-wave --stagedir="E:\\VC\\boost_1_47_0\\bin\\mgw" link=static runtime-link=shared runtime-link=static threading=multi debug release
编译选项说明
BJAM="" # boost中使用jam工具替代make工具,这里指定jam所在目录
TOOLSET=""# 指定工具链类型, acc | darwin | gcc | como | mipspro | pathscale | pgi | qcc | vacpp
TOOLSET=""# 指定工具链类型, acc | darwin | gcc | como | mipspro | pathscale | pgi | qcc | vacpp
QT项目文件中
添加
DEFINES += BOOST_THREAD_USE_LIB
添加相应库文件
INCLUDEPATH += "E:\\VC\\boost_1_47_0"
LIBS += E:\\VC\\boost_1_47_0\\bin\\gcc\\lib\\libboost_regex-mgw44-mt-1_47.a
LIBS += E:\\VC\\boost_1_47_0\\bin\\gcc\\lib\\libboost_regex-mgw44-mt-1_47.a
LIBS += E:\\VC\\boost_1_47_0\\bin\\gcc\\lib\\libboost_system-mgw44-mt-1_47.a
http://www.cnblogs.com/toosuo/archive/2012/02/15/2352504.html
以上是关于Qt中使用Boost的主要内容,如果未能解决你的问题,请参考以下文章
Qt编译和使用boost库(附5.51的Boost下载)good
如何在 Ubuntu 14.04 上的 QT creator 中使用 Boost 库