summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackGenericGenerator.h
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-07-24 16:52:39 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-07-24 16:52:39 (GMT)
commit919265516ea3233e6a4e29a17ad4ec24150eefda (patch)
tree1d2beab70b483ab0f2153d6766763094c7b11331 /Source/CPack/cmCPackGenericGenerator.h
parent4ae802d9c19d1f021970215d992b6aebc4165ec8 (diff)
downloadCMake-919265516ea3233e6a4e29a17ad4ec24150eefda.zip
CMake-919265516ea3233e6a4e29a17ad4ec24150eefda.tar.gz
CMake-919265516ea3233e6a4e29a17ad4ec24150eefda.tar.bz2
ENH: add ReadListFile() to cmCPackGenericGenerator, so cmMakefile can be
private again -convert the ZIP generator to use a cmake script instead of hardcoding everything (CPackZIP.cmake) Alex
Diffstat (limited to 'Source/CPack/cmCPackGenericGenerator.h')
-rw-r--r--Source/CPack/cmCPackGenericGenerator.h7
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