diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:35:45 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:35:45 (GMT) |
commit | d67584ccc4262c103a180504cb294e3ad6b6910d (patch) | |
tree | 456b7484187e71adad2cac1c08100cdf74821535 /Source/cmComputeLinkDepends.cxx | |
parent | 33df7f36d0b99a87880ee76d39b5814c98e78bd1 (diff) | |
download | CMake-d67584ccc4262c103a180504cb294e3ad6b6910d.zip CMake-d67584ccc4262c103a180504cb294e3ad6b6910d.tar.gz CMake-d67584ccc4262c103a180504cb294e3ad6b6910d.tar.bz2 |
cmTarget: Move link interface libraries struct out.
Diffstat (limited to 'Source/cmComputeLinkDepends.cxx')
-rw-r--r-- | Source/cmComputeLinkDepends.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmComputeLinkDepends.cxx b/Source/cmComputeLinkDepends.cxx index 59590fd..03ec820 100644 --- a/Source/cmComputeLinkDepends.cxx +++ b/Source/cmComputeLinkDepends.cxx @@ -361,7 +361,7 @@ void cmComputeLinkDepends::FollowLinkEntry(BFSEntry const& qe) if(entry.Target) { // Follow the target dependencies. - if(cmTarget::LinkInterface const* iface = + if(cmLinkInterface const* iface = entry.Target->GetLinkInterface(this->Config, this->Target->Target)) { const bool isIface = @@ -396,7 +396,7 @@ void cmComputeLinkDepends::FollowLinkEntry(BFSEntry const& qe) //---------------------------------------------------------------------------- void cmComputeLinkDepends -::FollowSharedDeps(int depender_index, cmTarget::LinkInterface const* iface, +::FollowSharedDeps(int depender_index, cmLinkInterface const* iface, bool follow_interface) { // Follow dependencies if we have not followed them already. @@ -459,7 +459,7 @@ void cmComputeLinkDepends::HandleSharedDependency(SharedDepEntry const& dep) // Target items may have their own dependencies. if(entry.Target) { - if(cmTarget::LinkInterface const* iface = + if(cmLinkInterface const* iface = entry.Target->GetLinkInterface(this->Config, this->Target->Target)) { // Follow public and private dependencies transitively. @@ -930,7 +930,7 @@ int cmComputeLinkDepends::ComputeComponentCount(NodeList const& nl) { if(cmTarget const* target = this->EntryList[*ni].Target) { - if(cmTarget::LinkInterface const* iface = + if(cmLinkInterface const* iface = target->GetLinkInterface(this->Config, this->Target->Target)) { if(iface->Multiplicity > count) |