diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-04-29 09:54:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-05-06 13:54:11 (GMT) |
commit | b8259c3d69258b884383559b74d37486b6a06ca2 (patch) | |
tree | 3a1a46fe6910927ad5a139ccabc11798a54b07d9 /Source/cmTargetLinkLibrariesCommand.cxx | |
parent | 78185f598c152b1dbce632e953874ce8132c5fe9 (diff) | |
download | CMake-b8259c3d69258b884383559b74d37486b6a06ca2.zip CMake-b8259c3d69258b884383559b74d37486b6a06ca2.tar.gz CMake-b8259c3d69258b884383559b74d37486b6a06ca2.tar.bz2 |
Centralize maintenance of usage requirement include directories
Maintain a target's internal list of usage requirement include
directories whenever the LINK_LIBRARIES property is set by either
target_link_libraries or set_property.
Diffstat (limited to 'Source/cmTargetLinkLibrariesCommand.cxx')
-rw-r--r-- | Source/cmTargetLinkLibrariesCommand.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/cmTargetLinkLibrariesCommand.cxx b/Source/cmTargetLinkLibrariesCommand.cxx index 3f652c9..b7b7691 100644 --- a/Source/cmTargetLinkLibrariesCommand.cxx +++ b/Source/cmTargetLinkLibrariesCommand.cxx @@ -259,14 +259,6 @@ cmTargetLinkLibrariesCommand::HandleLibrary(const char* lib, // Handle normal case first. if(this->CurrentProcessingState != ProcessingLinkInterface) { - { - cmListFileBacktrace lfbt; - this->Makefile->GetBacktrace(lfbt); - cmValueWithOrigin entry(this->Target->GetDebugGeneratorExpressions(lib, - llt), - lfbt); - this->Target->AppendTllInclude(entry); - } this->Makefile ->AddLinkLibraryForTarget(this->Target->GetName(), lib, llt); if (this->CurrentProcessingState != ProcessingPublicInterface) |