使用 automake 将不同项目中的一个标头添加到我的项目中
我正在开发一个使用 automake 构建系统的相对较大的项目。
现在的问题是我需要将该项目与另一个项目的库链接起来(这工作正常),但我还需要包含来自其他项目源树的标头(api.h
)。
Makefile.am 中的INCLUDES = -I@REMOTE_PROJECT_DIR@
不起作用,因为远程源目录中存在名称冲突的 .h 文件。如何仅添加 api.h
?
我在项目的 include 目录中使用了符号链接,但现在我需要将源代码推送到公共存储库中,并且使用它的每个人都在不同的目录中拥有其他项目,因此我需要使用配置参数。
I'm working on a relatively big project that is using automake build system.
Now the problem is that I need to link the project with a library from another project (this works fine), but I also need to include a header from the other project source tree (api.h
).
INCLUDES = -I@REMOTE_PROJECT_DIR@
in Makefile.am doesn't work, because there are .h files with coliding names in the remote source directory. How can I add just the api.h
?
I used a symlink into the include directory in the project, but now I need to push the sources into a public repo and everyone working with it has the other project in a different directory, so I need to use the configure param.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不想以任何方式调整 Makefile.am 或 configure.ac。如果 api.h 安装在标准位置(例如 /usr/include),那么您所需要的只是 configure.ac 中的 AC_CHECK_HEADERS([api.h])。如果 api.h 安装在非标准位置(例如 /home/joe/include),则在项目中获取它的方式是在配置时确定的。运行configure时,将参数CPPFLAGS=-I/home/joe/include添加到configure的调用中。您没有在构建文件本身中指示非标准位置。
另一种选择是使用 pkg-config,但在运行配置时仍会处理头文件的非标准位置。 (这次通过设置 PKG_CONFIG_PATH 而不是 CPPFLAGS)
You do not want to tweak you Makefile.am or your configure.ac in any way. If api.h is installed in a standard location (eg /usr/include), then all you need is AC_CHECK_HEADERS([api.h]) in configure.ac. If api.h is installed in a non-standard location (eg /home/joe/include), the way to pick it up in your project is determined at configure time. When you run configure, you add the argument CPPFLAGS=-I/home/joe/include to the invocation of configure. You do not indicate the non-standard location in the build files themselves.
Another alternative is to use pkg-config, but the non-standard location of your header file will still be dealt with when you run configure. (This time by setting PKG_CONFIG_PATH rather than CPPFLAGS)
如果您有相同名称的标头,则可以将其中至少一个标头放入不同名称的目录中,并使用目录名称包含它。
这是一个示例目录结构:
在 main.cpp 中:
编译时:
If you have headers with same names, you could put at least one of them into directory with different name and include it using directory name.
Here's a sample directory structure:
In main.cpp:
When compiling: