diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 15:37:48 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:46:31 (GMT) |
commit | 3846ebcf2b60b73e3eec848bd3dd41711eac5dc4 (patch) | |
tree | 2e994122916c4d1285b4e1a19bc2da14ec30b406 /Source/cmGeneratorTarget.cxx | |
parent | a7f5d70dde50ac74726f3c23d276d2fdac70d659 (diff) | |
download | CMake-3846ebcf2b60b73e3eec848bd3dd41711eac5dc4.zip CMake-3846ebcf2b60b73e3eec848bd3dd41711eac5dc4.tar.gz CMake-3846ebcf2b60b73e3eec848bd3dd41711eac5dc4.tar.bz2 |
cmLinkItem: Add cmLinkImplementation type.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index c499cd9..057aa07 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -1335,7 +1335,7 @@ void cmGeneratorTarget::ComputeLinkClosure(const std::string& config, { // Get languages built in this target. UNORDERED_SET<std::string> languages; - cmTarget::LinkImplementation const* impl = + cmLinkImplementation const* impl = this->Target->GetLinkImplementation(config); assert(impl); for(std::vector<std::string>::const_iterator li = impl->Languages.begin(); @@ -4057,7 +4057,7 @@ void cmGeneratorTarget::ComputeLinkInterface(const std::string& config, } if (this->GetType() != cmTarget::INTERFACE_LIBRARY) { - cmTarget::LinkImplementation const* impl = + cmLinkImplementation const* impl = this->Target->GetLinkImplementation(config); for(std::vector<cmLinkImplItem>::const_iterator li = impl->Libraries.begin(); li != impl->Libraries.end(); ++li) @@ -4098,7 +4098,7 @@ void cmGeneratorTarget::ComputeLinkInterface(const std::string& config, if(this->Target->LinkLanguagePropagatesToDependents()) { // Targets using this archive need its language runtime libraries. - if(cmTarget::LinkImplementation const* impl = + if(cmLinkImplementation const* impl = this->Target->GetLinkImplementation(config)) { iface.Languages = impl->Languages; |