在 Visual C 中安装 Boost 库2008年
我已经下载了 Visual C++ 2008,并且还拥有 Boost 库,版本 1.44.0。如何在 C++ 中安装 Boost 库?
我还有 Visual C++ 2010。
I have downloaded Visual C++ 2008 and I also have the Boost library, v. 1.44.0. How to can the Boost library be installed in C++?
I also have Visual C++ 2010.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必在 Visual Studio 中“安装”Boost。您需要的是将您的 IDE(在本例中为 Visual Studio)指向包含 Boost 标头和 lib 文件的文件夹(如果您已构建 Boost - 有些 Boost 库仅包含标头,有些则需要构建)。看看 Boost 入门 了解更多详细信息。
快速启动:
注意:请确保环境变量 PATH 中有 VC++ 编译器和链接器。
You don't have to "install" Boost in Visual Studio. What you need is to point your IDE (in this case Visual Studio) to the folders which contain the Boost headers and the lib files (if you have built Boost - some Boost libraries are header-only, some need to be built). Take a look at Boost Getting Started for further details.
Quick start:
Note: make sure you have the VC++ compiler and linker in the environment variable
PATH
.