summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/MaxRecursionDepth/macro.cmake
blob: a7cbfc2addd91a24c81553527c299d1b4601a48f (plain)
1
2
3
4
5
6
7
macro(recursive x)
  message("${x}")
  math(EXPR y "${x} + 1")
  recursive(${y})
endmacro()

recursive(3)