cmake/Tests/RunCMake/cmake_language/call_expand_function_name.cmake

12 lines
188 B
CMake
Raw Normal View History

2020-08-30 11:54:41 +02:00
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})