Feature request: Dynamic calls
It's currently possible to dynamically define functions:
set(foo bar)
function(${foo})
message(STATUS "Called ${foo} with: ${ARGV}")
endfunction()
bar(baz)
--- Called bar with: baz
But its not possible to Call it dynamically
Would it be possible to add a call command for this purpose?
call(${foo} baz)