diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-08 17:59:52 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-08 17:59:52 (GMT) |
commit | 829f8382e062466b4163e7a6dd36c6151e3e6b29 (patch) | |
tree | a5aa76f3689a723e2214b9d31a1608e208580f39 /Source/cmMakefile.h | |
parent | 4d6dba4c37928026b577870e93128e55cd16a24f (diff) | |
download | CMake-829f8382e062466b4163e7a6dd36c6151e3e6b29.zip CMake-829f8382e062466b4163e7a6dd36c6151e3e6b29.tar.gz CMake-829f8382e062466b4163e7a6dd36c6151e3e6b29.tar.bz2 |
Add option of watching variables
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 399b2ac..558066b 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -30,6 +30,7 @@ class cmCommand; class cmLocalGenerator; class cmMakeDepend; class cmSourceFile; +class cmVariableWatch; /** \class cmMakefile * \brief Process the input CMakeLists.txt file. @@ -531,6 +532,8 @@ public: * given a current CMakeLists file name */ cmCacheManager *GetCacheManager() const; + cmake *GetCMakeInstance() const; + cmVariableWatch* GetVariableWatch() const; //! Determine wether this is a local or global build. bool GetLocal() const; |