summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-08-23 13:45:24 (GMT)
committerBrad King <brad.king@kitware.com>2006-08-23 13:45:24 (GMT)
commitf826c6c58bd7dbafee9f0d8d12bb814ac0e8abc5 (patch)
tree537534219d3e967ed51889f7f493b9ef32ea8d4f /Source/cmLocalUnixMakefileGenerator3.h
parent539e5ac4c2c27a49365022d66b228edacc46d24c (diff)
downloadCMake-f826c6c58bd7dbafee9f0d8d12bb814ac0e8abc5.zip
CMake-f826c6c58bd7dbafee9f0d8d12bb814ac0e8abc5.tar.gz
CMake-f826c6c58bd7dbafee9f0d8d12bb814ac0e8abc5.tar.bz2
ENH: Centralized generation of targets listed in the help to be done by the code that actually writes the targets.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h
index 9bb2ab7..6e0491e 100644
--- a/Source/cmLocalUnixMakefileGenerator3.h
+++ b/Source/cmLocalUnixMakefileGenerator3.h
@@ -73,7 +73,8 @@ public:
const char* target,
const std::vector<std::string>& depends,
const std::vector<std::string>& commands,
- bool symbolic);
+ bool symbolic,
+ bool in_help = false);
// write the main variables used by the makefiles
void WriteMakeVariables(std::ostream& makefileStream);
@@ -214,6 +215,8 @@ public:
std::map<cmStdString, LocalObjectInfo> const& GetLocalObjectFiles()
{ return this->LocalObjectFiles;}
+ std::vector<cmStdString> const& GetLocalHelp() { return this->LocalHelp; }
+
// return info about progress actions
unsigned long GetNumberOfProgressActions();
unsigned long GetNumberOfProgressActionsForTarget(const char *);
@@ -346,6 +349,7 @@ private:
bool SkipAssemblySourceRules;
std::map<cmStdString, LocalObjectInfo> LocalObjectFiles;
+ std::vector<cmStdString> LocalHelp;
/* does the work for each target */
std::vector<cmMakefileTargetGenerator *> TargetGenerators;