diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-10-27 14:47:14 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-10-27 14:47:14 (GMT) |
commit | 56234aed4bfc87b691897056c4535b4d8cb3098f (patch) | |
tree | dffd371693861754131167309983b1ae2109ebf0 /Source/cmMakefile.h | |
parent | 21c818340e783a0702071d279351081d01c88e18 (diff) | |
download | CMake-56234aed4bfc87b691897056c4535b4d8cb3098f.zip CMake-56234aed4bfc87b691897056c4535b4d8cb3098f.tar.gz CMake-56234aed4bfc87b691897056c4535b4d8cb3098f.tar.bz2 |
PERF: Remove several classes from the bootstrap and so making bootstrap smaller and faster
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index f1a2b5c..63d6cf6 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -618,7 +618,14 @@ public: * given a current CMakeLists file name */ cmCacheManager *GetCacheManager() const; + + /** + * Get the variable watch. This is used to determine when certain variables + * are accessed. + */ +#ifdef CMAKE_BUILD_WITH_CMAKE cmVariableWatch* GetVariableWatch() const; +#endif //! Determine wether this is a local or global build. bool GetLocal() const; |