diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-16 04:49:37 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-10 11:20:30 +0200 |
commit | 922c89014f372ca38303b4258345c23027046616 (patch) | |
tree | 9b80c729c1f133f4ac8cdcd7f69fa7bb94afa2f5 /Source/cmComputeLinkDepends.cxx | |
parent | eaa5b9cbb1b145b76eb0448df1ce3a3c63ee13c6 (diff) | |
download | cmake-922c89014f372ca38303b4258345c23027046616.tar.gz |
cmGeneratorTarget: Port GetLinkInterface away from cmTarget.
Diffstat (limited to 'Source/cmComputeLinkDepends.cxx')
-rw-r--r-- | Source/cmComputeLinkDepends.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmComputeLinkDepends.cxx b/Source/cmComputeLinkDepends.cxx index a9e8cfc2b1..7d20827f01 100644 --- a/Source/cmComputeLinkDepends.cxx +++ b/Source/cmComputeLinkDepends.cxx @@ -365,7 +365,7 @@ void cmComputeLinkDepends::FollowLinkEntry(BFSEntry const& qe) { // Follow the target dependencies. if(cmLinkInterface const* iface = - entry.Target->GetLinkInterface(this->Config, this->Target->Target)) + entry.Target->GetLinkInterface(this->Config, this->Target)) { const bool isIface = entry.Target->GetType() == cmTarget::INTERFACE_LIBRARY; @@ -465,7 +465,7 @@ void cmComputeLinkDepends::HandleSharedDependency(SharedDepEntry const& dep) if(entry.Target) { if(cmLinkInterface const* iface = - entry.Target->GetLinkInterface(this->Config, this->Target->Target)) + entry.Target->GetLinkInterface(this->Config, this->Target)) { // Follow public and private dependencies transitively. this->FollowSharedDeps(index, iface, true); @@ -937,7 +937,7 @@ int cmComputeLinkDepends::ComputeComponentCount(NodeList const& nl) if(cmGeneratorTarget const* target = this->EntryList[*ni].Target) { if(cmLinkInterface const* iface = - target->GetLinkInterface(this->Config, this->Target->Target)) + target->GetLinkInterface(this->Config, this->Target)) { if(iface->Multiplicity > count) { |