关于在add_custom / _target / commands中使用cmake函数的问题,这是How to call a CMake function from add_custom_target/command?和CMake: execute a macro/function as the command of add_custom_command
的延续目前我的代码是作为函数编写的,有时也称为递归,我理解上面的链接建议使用CMAKE脚本, 我们可以在该cmake脚本中拥有多个功能吗?如果是,我们在呼叫期间提到功能名称?这样的CMAKE脚本会如下所示吗?
function(name1)
endfunction()
function(name2)
endfunction()
有人可以用功能分享这种cmake脚本的内容吗?