如何访问外部库和头文件VC10
我要买一本使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
右键单击您的项目 ->属性-> 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.