diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-10 14:28:05 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-10 14:28:05 (GMT) |
commit | 5a676508c4e18f55d5489fee6d266f715521263f (patch) | |
tree | 42b561aee5d93f114362cb5da2dca4e4ca214206 /Source/cmLocalUnixMakefileGenerator.h | |
parent | ad3478cd1daa50f094827a9e8687ef06b29aed44 (diff) | |
download | CMake-5a676508c4e18f55d5489fee6d266f715521263f.zip CMake-5a676508c4e18f55d5489fee6d266f715521263f.tar.gz CMake-5a676508c4e18f55d5489fee6d266f715521263f.tar.bz2 |
BUG: fix bug in depends
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.h b/Source/cmLocalUnixMakefileGenerator.h index c2604f0..c8fcd18 100644 --- a/Source/cmLocalUnixMakefileGenerator.h +++ b/Source/cmLocalUnixMakefileGenerator.h @@ -19,6 +19,7 @@ #include "cmLocalGenerator.h" +class cmDependInformation; class cmMakeDepend; class cmTarget; class cmSourceFile; @@ -77,6 +78,9 @@ public: void SetMakefileVariableSize(int s) { m_MakefileVariableSize = s; } protected: + void AddDependenciesToSourceFile(cmDependInformation const*info, + cmSourceFile *i, + std::set<cmDependInformation const*> *visited); virtual const char* GetSafeDefinition(const char*); virtual void ProcessDepends(const cmMakeDepend &md); virtual void OutputMakefile(const char* file, bool withDepends); |