diff options
Diffstat (limited to 'Source/CPack/cmCPackGenericGenerator.h')
-rw-r--r-- | Source/CPack/cmCPackGenericGenerator.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackGenericGenerator.h b/Source/CPack/cmCPackGenericGenerator.h index f5df78e..7e0b10a 100644 --- a/Source/CPack/cmCPackGenericGenerator.h +++ b/Source/CPack/cmCPackGenericGenerator.h @@ -80,6 +80,7 @@ public: void SetOption(const char* op, const char* value); void SetOptionIfNotSet(const char* op, const char* value); const char* GetOption(const char* op); + bool IsSet(const char* name) const; //! Set all the variables int FindRunningCMake(const char* arg0); @@ -89,6 +90,8 @@ public: //! Display verbose information via logger void DisplayVerboseOutput(const char* msg, float progress); + + bool ReadListFile(const char* moduleName); protected: int PrepareNames(); @@ -129,8 +132,8 @@ protected: std::string CMakeRoot; cmCPackLog* Logger; - - cmMakefile* Makefile; +private: + cmMakefile* MakefileMap; }; #endif |