summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-07-15 15:42:43 (GMT)
committerBrad King <brad.king@kitware.com>2014-07-16 17:31:29 (GMT)
commit0a8fbac19a1d12adaa10873cc8fdb3dff164c981 (patch)
tree78f7959b9940f7d34010fc41119e33f04645cf64 /Source/cmTarget.cxx
parentfb3518dc81ac1b776503d4369c6d375a706485d1 (diff)
downloadCMake-0a8fbac19a1d12adaa10873cc8fdb3dff164c981.zip
CMake-0a8fbac19a1d12adaa10873cc8fdb3dff164c981.tar.gz
CMake-0a8fbac19a1d12adaa10873cc8fdb3dff164c981.tar.bz2
cmTarget: Drop GetTransitivePropertyTargets method
Inline the implementation at the only remaining call site.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index b36a600..8185bcc 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -6055,25 +6055,6 @@ cmTarget::GetLinkImplementationClosure(const std::string& config) const
}
//----------------------------------------------------------------------------
-void cmTarget::GetTransitivePropertyTargets(const std::string& config,
- cmTarget const* headTarget,
- std::vector<cmTarget const*> &tgts) const
-{
- if(cmTarget::LinkInterfaceLibraries const* iface =
- this->GetLinkInterfaceLibraries(config, headTarget, true))
- {
- for(std::vector<cmLinkItem>::const_iterator it = iface->Libraries.begin();
- it != iface->Libraries.end(); ++it)
- {
- if (it->Target)
- {
- tgts.push_back(it->Target);
- }
- }
- }
-}
-
-//----------------------------------------------------------------------------
void
cmTargetInternals::ComputeLinkInterfaceLibraries(
cmTarget const* thisTarget,