diff options
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index e9c58d4..1b8f124 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -114,14 +114,8 @@ public: std::string ConvertToOptionallyRelativeOutputPath(const char* remote); // flag to determine if this project should be included in a parent project - bool GetExcludeAll() - { - return this->ExcludeFromAll; - } - void SetExcludeAll(bool b) - { - this->ExcludeFromAll = b; - } + bool GetExcludeAll(); + void SetExcludeAll(bool b); ///! set/get the parent generator cmLocalGenerator* GetParent(){return this->Parent;} @@ -281,7 +275,6 @@ protected: std::vector<std::string> StartDirectoryComponents; std::vector<std::string> HomeOutputDirectoryComponents; std::vector<std::string> StartOutputDirectoryComponents; - bool ExcludeFromAll; cmLocalGenerator* Parent; std::vector<cmLocalGenerator*> Children; std::map<cmStdString, cmStdString> LanguageToIncludeFlags; |