autoconf,如何包含 AC_CONFIG_SRCDIR 文件中的文件

发布于 2024-08-22 23:56:45 字数 190 浏览 3 评论 0原文

我希望能够在配置运行期间将两个文件合并为一个。我已经在某些文件上使用 AC_CONFIG_SRCDIR[file.hpp] 宏进行纹理替换。是否有一些指令包含来自 file.hpp.in 的文件,某种 @include (another.hpp) @ 或类似的东西?

谢谢

I would like to be able to merge two files into one during configure run. I already do textural replacement using AC_CONFIG_SRCDIR[file.hpp] macro on some files. is there some directive to include files from file.hpp.in, some sort of @include (another.hpp) @ or something like that?

Thanks

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

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

发布评论

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

评论(2

哎呦我呸! 2024-08-29 23:56:45

AC_CONFIG_FILES([file.hpp:file.hpp.in:another.hpp.in]) 将对 file.hpp.inanother 执行文本替换.hpp.in,然后将两个结果连接到 file.hpp 中。

AC_CONFIG_FILES([file.hpp:file.hpp.in:another.hpp.in]) will perform text substitution on both file.hpp.in and another.hpp.in and then concatenate both results into file.hpp.

记忆消瘦 2024-08-29 23:56:45

我自己找到了答案。文件插入可以使用 ac_subst_file 完成。

Found answer myself. file insertion can be done using ac_subst_file.

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