diff options
author | Brad King <brad.king@kitware.com> | 2023-03-13 15:20:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-03-13 15:37:20 (GMT) |
commit | 395895bda72462c59e18135e98662e47f52138ba (patch) | |
tree | ab59772430eddc1202a1bcc23587deb5795a48ac /Source/cmMakefile.h | |
parent | 88bc8dfc14f02ee07654c906a0e6be5d5a33b017 (diff) | |
download | CMake-395895bda72462c59e18135e98662e47f52138ba.zip CMake-395895bda72462c59e18135e98662e47f52138ba.tar.gz CMake-395895bda72462c59e18135e98662e47f52138ba.tar.bz2 |
cmMakefile: Factor out helper to get recursion depth limit
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 6923a77..a43ff41 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -1023,6 +1023,8 @@ public: const char* sourceFilename) const; bool IsProjectFile(const char* filename) const; + size_t GetRecursionDepthLimit() const; + size_t GetRecursionDepth() const; void SetRecursionDepth(size_t recursionDepth); |