CMakeLists.txt 108 B

123456789
  1. function(f)
  2. message(STATUS "nested global_frame")
  3. endfunction()
  4. function(g)
  5. f()
  6. endfunction()
  7. g()