diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-02 17:17:10 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-02 17:17:10 (GMT) |
commit | 27fe57b716555ffa31b16e98841c7f1a82228740 (patch) | |
tree | 361f44d30ef7bdba9c37b389824ac9670801177e /Source/cmAddLibraryCommand.cxx | |
parent | b5b46599feb33d7f873faca6215f1717ddd209e6 (diff) | |
download | CMake-27fe57b716555ffa31b16e98841c7f1a82228740.zip CMake-27fe57b716555ffa31b16e98841c7f1a82228740.tar.gz CMake-27fe57b716555ffa31b16e98841c7f1a82228740.tar.bz2 |
ENH: change LINK_LIBRARY to add to targets
Diffstat (limited to 'Source/cmAddLibraryCommand.cxx')
-rw-r--r-- | Source/cmAddLibraryCommand.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmAddLibraryCommand.cxx b/Source/cmAddLibraryCommand.cxx index 13957b0..baecbe3 100644 --- a/Source/cmAddLibraryCommand.cxx +++ b/Source/cmAddLibraryCommand.cxx @@ -72,13 +72,4 @@ bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& argsIn) return true; } -void cmAddLibraryCommand::FinalPass() -{ - const cmTarget::LinkLibraries& libs = m_Makefile->GetLinkLibraries(); - for( cmTarget::LinkLibraries::const_iterator i = libs.begin(); - i != libs.end(); ++i ) - { - m_Makefile->AddDependencyToCache( m_LibName.c_str(), i->first ); - } -} |