1

我有一个项目,其中一个自定义命令的输出用作另一个自定义命令的输入,但在不同的目录中。例如:

目录lib/CMakeLists.txt包含:

add_custom_command(
    OUTPUT libfoo.xx
    COMMAND <command to build libfoo.xx>
)
add_custom_target(libfoo DEPENDS libfoo.xx)

目录test/CMakeLists.txt包含:

add_custom_command(OUTPUT test.yy
   COMMAND <command to build test.yy>
   DEPENDS "${PROJECT_BINARY_DIR}/lib/libfoo.xx"
)

所以我需要确保 libfoo 是在 test.yy 之前构建的。文档说 add_custom_command() 的 DEPENDS 子句只能具有文件级依赖项。让我们试试看会发生什么:

No rule to make target 'lib/libfoo.xx', needed by 'test/test.yy'.  Stop.

另一方面,如果我尝试通过说 来创建目标级别的依赖项DEPENDS libfoo,则错误将更改为:

No rule to make target 'libfoo', needed by 'test/test.yy'.  Stop.

因此,似乎文件级或目标级依赖项在这里都不起作用。有没有办法让一个自定义命令的输出成为另一个目录中另一个自定义命令的输入?

4

1 回答 1

0

您可以尝试test/CMakLists.txt添加

add_custom_target(test DEPENDS test.yy)

然后添加

add_dependencies(test libfoo)

在您的顶级CMakeLists.txt.

免责声明:我没有测试它,我是 CMake 初学者。告诉我们它是否有效!

于 2011-05-20T23:08:04.893 回答