OneLetter.cmake 89 B

1234567
  1. function(f)
  2. g(${ARGN})
  3. endfunction()
  4. macro(g)
  5. message(${ARGN})
  6. endmacro()
  7. f(message)