diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-06-02 17:41:34 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-06-02 17:41:34 (GMT) |
commit | c2aa4e7a0834b8d06aa4a2a1acfe59a6282b4a82 (patch) | |
tree | 137f5ee92cb9f86874e7ab3034580f78680ed3c4 /Source/cmLocalUnixMakefileGenerator3.h | |
parent | 0b518c2fdb0898b1edfe40db4dd754e808817814 (diff) | |
download | CMake-c2aa4e7a0834b8d06aa4a2a1acfe59a6282b4a82.zip CMake-c2aa4e7a0834b8d06aa4a2a1acfe59a6282b4a82.tar.gz CMake-c2aa4e7a0834b8d06aa4a2a1acfe59a6282b4a82.tar.bz2 |
ENH: now also provides obj rules for local Makefiles
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 |