diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 15:37:49 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:46:32 (GMT) |
commit | d4a24c0e953e0032a2e483917850b7f8f387bbb2 (patch) | |
tree | c4ee40746dcf84e0565a86da3293d20b7f8094e7 /Source/cmComputeLinkDepends.cxx | |
parent | 83981cf5931aaa2d9bbf4f99ea55c99736173fdf (diff) | |
download | CMake-d4a24c0e953e0032a2e483917850b7f8f387bbb2.zip CMake-d4a24c0e953e0032a2e483917850b7f8f387bbb2.tar.gz CMake-d4a24c0e953e0032a2e483917850b7f8f387bbb2.tar.bz2 |
cmGeneratorTarget: Move GetLinkImplementation from cmTarget.
Diffstat (limited to 'Source/cmComputeLinkDepends.cxx')
-rw-r--r-- | Source/cmComputeLinkDepends.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeLinkDepends.cxx b/Source/cmComputeLinkDepends.cxx index 4b7faa7..e774e16 100644 --- a/Source/cmComputeLinkDepends.cxx +++ b/Source/cmComputeLinkDepends.cxx @@ -555,7 +555,7 @@ void cmComputeLinkDepends::AddDirectLinkEntries() { // Add direct link dependencies in this configuration. cmLinkImplementation const* impl = - this->Target->Target->GetLinkImplementation(this->Config); + this->Target->GetLinkImplementation(this->Config); this->AddLinkEntries(-1, impl->Libraries); for(std::vector<cmLinkItem>::const_iterator wi = impl->WrongConfigLibraries.begin(); |