8 lines
112 B
CMake
8 lines
112 B
CMake
|
function(recursive x)
|
||
|
message("${x}")
|
||
|
math(EXPR y "${x} + 1")
|
||
|
recursive(${y})
|
||
|
endfunction()
|
||
|
|
||
|
recursive(3)
|