diff options
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 0bb467d..1ccb5f1 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -285,11 +285,6 @@ class cmake bool GetDebugOutput() { return this->DebugOutput; } void DebugOutputOn() { this->DebugOutput = true;} - //! Add or get installation components - void AddInstallComponent(const char* component); - std::set<cmStdString>* GetInstallComponents() - { return &this->InstallComponents; } - protected: typedef cmGlobalGenerator* (*CreateGeneratorFunctionType)(); typedef std::map<cmStdString, @@ -308,8 +303,6 @@ protected: std::set<cmStdString> WrittenFiles; - std::set<cmStdString> InstallComponents; - ///! return true if the same cmake was used to make the cache. bool CacheVersionMatches(); ///! read in a cmake list file to initialize the cache |