我有一个项目,其中一个自定义命令的输出用作另一个自定义命令的输入,但在不同的目录中。例如:
目录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.
因此,似乎文件级或目标级依赖项在这里都不起作用。有没有办法让一个自定义命令的输出成为另一个目录中另一个自定义命令的输入?