diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-25 12:19:54 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-27 06:44:25 (GMT) |
commit | 0fb187cc589b83ded107d9a9a1971830efb6c751 (patch) | |
tree | 4ba63218ba0774f433c783c3b00e663f148282b0 /Source/cmTarget.cxx | |
parent | 8caf1f361b2207522d19bf4a28cecaa3a2391918 (diff) | |
download | CMake-0fb187cc589b83ded107d9a9a1971830efb6c751.zip CMake-0fb187cc589b83ded107d9a9a1971830efb6c751.tar.gz CMake-0fb187cc589b83ded107d9a9a1971830efb6c751.tar.bz2 |
CMP0026: Port away from GetGeneratorTarget
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index f0f404c..1eebd12 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -1602,7 +1602,7 @@ const char *cmTarget::GetProperty(const std::string& prop, // CMake time. cmGlobalGenerator* gg = this->Makefile->GetGlobalGenerator(); gg->CreateGenerationObjects(); - cmGeneratorTarget* gt = gg->GetGeneratorTarget(this); + cmGeneratorTarget* gt = gg->FindGeneratorTarget(this->GetName()); this->Properties.SetProperty(propLOCATION, gt->GetLocationForBuild()); } @@ -1627,7 +1627,7 @@ const char *cmTarget::GetProperty(const std::string& prop, { cmGlobalGenerator* gg = this->Makefile->GetGlobalGenerator(); gg->CreateGenerationObjects(); - cmGeneratorTarget* gt = gg->GetGeneratorTarget(this); + cmGeneratorTarget* gt = gg->FindGeneratorTarget(this->GetName()); this->Properties.SetProperty( prop, gt->GetFullPath(configName, false).c_str()); } @@ -1651,7 +1651,7 @@ const char *cmTarget::GetProperty(const std::string& prop, { cmGlobalGenerator* gg = this->Makefile->GetGlobalGenerator(); gg->CreateGenerationObjects(); - cmGeneratorTarget* gt = gg->GetGeneratorTarget(this); + cmGeneratorTarget* gt = gg->FindGeneratorTarget(this->GetName()); this->Properties.SetProperty( prop, gt->GetFullPath(configName, false).c_str()); } |