如何在 Visual Studio 2008 中的 cpp 项目中使用外部 cpp 项目

发布于 2024-09-07 17:59:07 字数 96 浏览 5 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(1

寄居者 2024-09-14 17:59:07

您的测试程序需要依赖于该库,以便它链接到它。

除此之外,您还需要在测试程序的“属性 -> 链接器 -> 输入”部分中添加 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.

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