mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 22:58:37 -05:00
94c1e4fdb3
Also rename the `INVOKE` signature to `CALL`. Fixes: #20732
12 lines
188 B
CMake
12 lines
188 B
CMake
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})
|