summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/cmake_language/call_expand_function_name.cmake
blob: 565a7df40627d76be0b8752e24a6fe2242bb6d91 (plain)
1
2
3
4
5
6
7
8
9
10
11
function(some_function_1)
  message(1)
endfunction()

function(some_function_2)
  message(2)
endfunction()

set(function_version 1)

cmake_language(CALL some_function_${function_version})