How to call a CMake function from add_custom_targe

2019-01-18 04:43发布

is it possible to call a CMake function out of an add_custom_target or add_custom_command? I know I could move the CMake function to a Python (or whatever) script and call it from add_custom_target/command but I would like to avoid having tons of script next to the existing CMake infra.

What I want to achieve is to use CPack for generating a zip package of binary artifacts and publish them in an artifact repository. For the publishing part I have already the CMake function created but now I need to combine the packaging and publishing together.

Thanks for any help/hints in advance.

Martin

2条回答
唯我独甜
2楼-- · 2019-01-18 05:15

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.

查看更多
我想做一个坏孩纸
3楼-- · 2019-01-18 05:16

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.

查看更多
登录 后发表回答