如何访问外部库和头文件VC10

发布于 2024-10-05 12:41:47 字数 181 浏览 4 评论 0原文

我要买一本使用 Xerces C++ 的书。我目前使用的是VS 2010 Ultimate,所以该程序不会错过任何功能。我已经下载了 Windows x86 VC10 的预编译二进制文件。我的问题是我必须对环境变量和文件做什么才能让 Visual Studio 导入头文件,即 #include 。我没有链接外部库的经验,所以我需要一个简单的解释。

I'm going to get a book that uses Xerces C++. I'm currently using VS 2010 ultimate, so the program doesn't miss any features. I've downloaded the precompiled binaries for windows x86 VC10. My question is what do I have to do to my environmental variables and files to be able to have Visual studio import the header files i.e. #include . I have no experience linking external libraries, so I need a simple explanation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初见终念 2024-10-12 12:41:47

右键单击您的项目 ->属性-> C/C++->一般->附加包含目录

包含 Xerces 包含文件的路径。

对于库属性链接器 ->一般->其他库目录

包括 Xerces lib 文件的路径。

在链接器中->一般->输入->其他依赖项

添加链接所需的库。

Right click on your project -> Properties -> C/C++ -> General -> Additional Include Directories

Include the path of Xerces include files.

For Lib Properties Linker -> General -> Additional Library Directories

Include the path of Xerces lib files.

In Linker -> General -> Input -> Additional dependencies

Add the libs required for linking.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文