summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-07 23:47:37 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-12 16:39:58 (GMT)
commit993aace78a12fba1a70f193a1e6ac0cbc6925bd6 (patch)
tree0dfa03c892c04d763cb4a4878fd2d79d6de01ebb /Source/cmGeneratorTarget.cxx
parent43ade9957770a95ef6a589e34ab0bb93def0489b (diff)
downloadCMake-993aace78a12fba1a70f193a1e6ac0cbc6925bd6.zip
CMake-993aace78a12fba1a70f193a1e6ac0cbc6925bd6.tar.gz
CMake-993aace78a12fba1a70f193a1e6ac0cbc6925bd6.tar.bz2
cmGeneratorTarget: Port processILibs to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 7c700a0..c24126f 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -2068,9 +2068,9 @@ void processILibs(const std::string& config,
cmLinkItem const& item,
cmGlobalGenerator* gg,
std::vector<cmGeneratorTarget const*>& tgts,
- std::set<cmTarget const*>& emitted)
+ std::set<cmGeneratorTarget const*>& emitted)
{
- if (item.Target && emitted.insert(item.Target->Target).second)
+ if (item.Target && emitted.insert(item.Target).second)
{
tgts.push_back(item.Target);
if(cmLinkInterfaceLibraries const* iface =
@@ -2096,7 +2096,7 @@ cmGeneratorTarget::GetLinkImplementationClosure(
if(!tgts.Done)
{
tgts.Done = true;
- std::set<cmTarget const*> emitted;
+ std::set<cmGeneratorTarget const*> emitted;
cmLinkImplementationLibraries const* impl
= this->GetLinkImplementationLibraries(config);