2022-08-04 22:12:04 +02:00

15 lines
193 B
CMake

function(function_that_uses_else)
if(FALSE)
else()
endif()
endfunction()
function(f)
message(STATUS "nested global_frame")
endfunction()
function(g)
f()
endfunction()
g()