summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-05-18 17:46:00 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-05-18 17:46:00 (GMT)
commit78b5cca6e31c2eb3fc684652ecb03b0558a41c8e (patch)
tree0e8927ec0329f49858e11e9f8f7eafce1ced20be /Source/cmLocalUnixMakefileGenerator3.h
parentaa73e653aaf282ecf412e0e6092a95adc8ce3641 (diff)
downloadCMake-78b5cca6e31c2eb3fc684652ecb03b0558a41c8e.zip
CMake-78b5cca6e31c2eb3fc684652ecb03b0558a41c8e.tar.gz
CMake-78b5cca6e31c2eb3fc684652ecb03b0558a41c8e.tar.bz2
ENH: another step to the next generator still not optimized yet
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h
index 6dbbea8..a6de93e 100644
--- a/Source/cmLocalUnixMakefileGenerator3.h
+++ b/Source/cmLocalUnixMakefileGenerator3.h
@@ -144,6 +144,12 @@ public:
std::map<cmStdString, IntegrityCheckSet> &GetIntegrityCheckSet()
{ return m_CheckDependFiles;}
+ void AppendTargetDepends(std::vector<std::string>& depends,
+ const cmTarget& target);
+
+ void AppendGlobalTargetDepends(std::vector<std::string>& depends,
+ const cmTarget& target);
+
protected:
// write the target rules for the local Makefile into the stream
@@ -282,8 +288,6 @@ protected:
const char* GetSourceFileLanguage(const cmSourceFile& source);
std::string ConvertToQuotedOutputPath(const char* p);
- void AppendTargetDepends(std::vector<std::string>& depends,
- const cmTarget& target);
void AppendAnyDepend(std::vector<std::string>& depends, const char* name,
bool assume_unknown_is_file=false);
void AppendRuleDepend(std::vector<std::string>& depends,