如何在 Visual Studio 2008 中的 cpp 项目中使用外部 cpp 项目
我正在尝试使用 cppunit 制作小型测试驱动示例。所以我有 2 个项目,分别是测试项目和普通库项目。无论我做什么,我都无法成功。我一直遇到 LNK 错误。任何帮助将不胜感激。
i m trying to make small test driven example by using cppunit. So i have 2 project which are test and normal library project. Whatever i do, i cannot be successfull. i got alltime LNK Error. Any help will be apreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的测试程序需要依赖于该库,以便它链接到它。
除此之外,您还需要在测试程序的“属性 -> 链接器 -> 输入”部分中添加 cppunit 库作为附加库。
Your test program needs to have a dependency on the library, so that it links against it.
In addition to this, you need to add the cppunit libraries as additional libraries, in the "properties -> linker -> input" section of the test program.