如何使 CMake 自定义目标触发器仅针对某些依赖项?

发布于 2025-01-20 14:38:21 字数 562 浏览 0 评论 0原文

我有一个取决于输入文件和程序的CMAKE自定义目标,例如:

add_custom_command(
    OUTPUT generate
    COMMAND install generate
)
add_custom_command(
    OUTPUT header.h
    DEPENDS generate header.txt
    COMMAND generate -i header.txt -o header.h
)

由于构建系统的工作原理,因此在编译时无法使用“生成”应用程序,并且每次都需要使用第一个自定义命令安装。

我遇到的问题是,由于需要安装应用程序,因此显然,自定义命令是始终运行的。因此,我想要的是对于输出'header.h'才能在“ header.txt”更改时生成。基本上,“ header.txt”更改将是唯一触发此自定义命令的触发器。但是,如果触发了这一点,那么我也想运行第一个自定义命令,以便我们可以安装应用程序。

如果“ header.txt”没有更改,则无需使用第一个自定义命令安装应用程序,因为它不会使用。

如何在Cmake中完成?

I have a CMake custom target that depends on an input file and a program, like this:

add_custom_command(
    OUTPUT generate
    COMMAND install generate
)
add_custom_command(
    OUTPUT header.h
    DEPENDS generate header.txt
    COMMAND generate -i header.txt -o header.h
)

Because of how the build system works, the 'generate' application is not available when compiling and needs to be installed everytime with the first custom command.

The issue I have is that, since the application always needs to be installed, the custom command is always running, obviously. So what I want is for the output 'header.h' to only be generated when 'header.txt' changes. Basically, 'header.txt' changes would be the only trigger to this custom command. However, if this is triggered, then I also want to run the first custom command so that we can install the application.

If 'header.txt' did not change, then there is no need to install the application with the first custom command since it is not going to be used.

How can this be done in CMake?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文