diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-03-22 19:06:52 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-03-22 19:06:52 (GMT) |
commit | 10efe3b079caf5237e01d31b09f7947c77c7458f (patch) | |
tree | 4df9c11b285a62fdeb1c7868520e9303f95fd26e /Source/cmMakefile.h | |
parent | 43b9f184c2f9cacce2917577f9469f71f64885c5 (diff) | |
download | CMake-10efe3b079caf5237e01d31b09f7947c77c7458f.zip CMake-10efe3b079caf5237e01d31b09f7947c77c7458f.tar.gz CMake-10efe3b079caf5237e01d31b09f7947c77c7458f.tar.bz2 |
ENH: added some new functionality
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index f480c5a..0e00f92 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -661,7 +661,7 @@ public: ///! Set/Get a property of this directory void SetProperty(const char *prop, const char *value); - const char *GetProperty(const char *prop) const; + const char *GetProperty(const char *prop); bool GetPropertyAsBool(const char *prop) const; typedef std::map<cmStdString, cmStdString> DefinitionMap; @@ -755,6 +755,9 @@ private: // should this makefile be processed before or after processing the parent bool PreOrder; + + // stack of list files being read + std::deque<cmStdString> ListFileStack; }; |