8 lines
89 B
CMake
8 lines
89 B
CMake
|
function(f)
|
||
|
g(${ARGN})
|
||
|
endfunction()
|
||
|
macro(g)
|
||
|
message(${ARGN})
|
||
|
endmacro()
|
||
|
f(message)
|