summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/MaxRecursionDepth/variable_watch-invalid-var-stderr.txt
Commit message (Collapse)AuthorAgeFilesLines
* Refactor: Modernize `cmVariableWatchCommand` a littleAlex Turbov2019-10-171-2/+2
|
* cmMakefile: Impose maximum recursion limitKyle Edwards2019-01-231-0/+6
In order to keep infinitely-recursive scripts from causing a stack overflow in the CMake executable, CMake now imposes a maximum recursion limit before issuing an error message. The limit can be adjusted at runtime with CMAKE_MAXIMUM_RECURSION_DEPTH. Fixes: #18694