使用自动工具与单元测试共享文件
我有一个使用 autoconf 和 automake 的项目,其结构如下:
- /
- src/
- 类.h
- 类.cpp
- 测试/
- class_unittest.cpp
- src/
在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
- src/
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 srcdir 变量来引用 VPATH 构建中的等效源目录。
You can use the srcdir variable to refer to the equivalent source directory in a VPATH build.