diff options
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; }; |