在宏内部CMake add_custom_command

时间:2015-02-12 09:04:40

标签: macros cmake post-build-event

我的CMake代码如下所示:

macro(macro_name target_name)
    add_custom_command(TARGET ${target_name}
        POST_BUILD
        COMMAND MyCommand)
endmacro()

运行此命令我收到以下消息:

CMake Warning (dev) at ... (add_custom_command):
Policy CMP0040 is not set: The target in the TARGET signature of
add_custom_command() must exist.  Run "cmake --help-policy CMP0040" for
policy details.  Use the cmake_policy command to set the policy and
suppress this warning.

The target name "target_name" is unknown in this context.

函数内部的相同代码效果很好,但我需要宏来处理其他事情。

CMake政策(http://www.cmake.org/cmake/help/v3.0/policy/CMP0040.html)建议忽略此警告(并忽略添加后构建步骤)或根据设置将其视为错误。

这个:http://www.cmake.org/cmake/help/v3.0/command/macro.html表示宏中的参数行为与函数中的参数行为不同。

如何正确引用宏参数才能使其正常工作?

1 个答案:

答案 0 :(得分:0)

我设法找出原因:在我的情况下,错误的目录被用作宏内的$ {CMAKE_CURRENT_BINARY_DIR}。修复路径可以获得理想的结果