diff options
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index ffeb0b8..94022d3 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -158,7 +158,9 @@ protected: void WriteLocalMakefileTargets(std::ostream& ruleFileStream); // create the cd to home commands - void CreateJumpCommand(std::vector<std::string>& commands, std::string & localName); + void CreateJumpCommand(std::vector<std::string>& commands, + const char *MakefileName, + std::string & localName); // these two methods just compute reasonable values for m_LibraryOutputPath and // m_ExecutableOutputPath @@ -343,6 +345,8 @@ private: // Set of object file names that will be built in this directory. std::set<cmStdString> m_ObjectFiles; + + std::map<cmStdString,std::vector<const cmTarget *> > m_LocalObjectFiles; }; #endif |