How to call a CMake function from add_custom_target/command?

牧云@^-^@ 提交于 2019-11-27 14:23:13

I encountered this issue while writing a CMake build system for BVLC/Caffe. What I finally did is I put the function content into a separate CMake script and called it from within add_custom_target by invoking:

add_custom_target(target_name
    COMMAND ${CMAKE_COMMAND} -P path_to_script
)

Invoking CMake with -P flag makes it act as a scripting language. You can put any CMake functions inside the script.

I looked for the same and after a few minutes i realized that this is impossible because cmake is a build-generator generator.

This command will just be run at a different time, for example from within your IDE, when the cmake is just not existing.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!