使用自动工具与单元测试共享文件

发布于 2024-10-02 06:38:07 字数 538 浏览 7 评论 0原文

我有一个使用 autoconf 和 automake 的项目,其结构如下:

  • /
    • src/
      • 类.h
      • 类.cpp
    • 测试/
      • class_unittest.cpp

在class_unittest.cpp 中,我在源文件中包含class.h,并在编译时还包含class.cpp 文件。在用于测试的 automake 配置中,我在 AM_CPPFLAGS = -I../src/ 定义中添加 ../src 作为新的包含路径,并在 SOURCES 定义中相对引用 class.cpp 。

当我从根目录构建软件时,它非常有用,但是如果我尝试通过在根目录中创建 dir foo 并在目录调用 ../configure && 中进行 VPATH 构建,效果会很好。当尝试编译 class_unittest.cpp 时,我会遇到缺少头文件 class.h 的错误。

那么如何共享标头进行测试以避免此问题?

I have a project using autoconf and automake with following structure:

  • /
    • src/
      • class.h
      • class.cpp
    • test/
      • class_unittest.cpp

In class_unittest.cpp I include class.h in the source file and on compile also the class.cpp file. In automake config for test I add ../src as a new include path in AM_CPPFLAGS = -I../src/ definition and refer to the class.cpp relatively in SOURCES definition.

It works great when I'm building the software from the root directory, but if I try to do a VPATH build by creating a dir foo in root and in the dir call ../configure && make I will get missing header class.h errors when trying to compile class_unittest.cpp.

So how do I share the header for testing to avoid this problem?

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

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

发布评论

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

评论(1

可爱暴击 2024-10-09 06:38:07

您可以使用 srcdir 变量来引用 VPATH 构建中的等效源目录。

AM_CPPFLAGS = -I$(srcdir)/../src

You can use the srcdir variable to refer to the equivalent source directory in a VPATH build.

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