使用 automake 将不同项目中的一个标头添加到我的项目中

发布于 2024-08-24 03:59:32 字数 341 浏览 8 评论 0原文

我正在开发一个使用 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 技术交流群。

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

发布评论

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

评论(2

森林很绿却致人迷途 2024-08-31 03:59:32

您不想以任何方式调整 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)

永不分离 2024-08-31 03:59:32

如果您有相同名称的标头,则可以将其中至少一个标头放入不同名称的目录中,并使用目录名称包含它。

这是一个示例目录结构:

mylibrary/include/myblirary/api.h

myproject/api.h 
myproject/main.cpp 

在 main.cpp 中:

#include "api.h"
#include "mylibrary/api.h"

#include <boost/regex.hpp>

编译时:

g++ -I mylibrary/include

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:

mylibrary/include/myblirary/api.h

myproject/api.h 
myproject/main.cpp 

In main.cpp:

#include "api.h"
#include "mylibrary/api.h"

#include <boost/regex.hpp>

When compiling:

g++ -I mylibrary/include

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