diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:50 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:49 (GMT) |
commit | 4329a71c128f8a8fca48a8827226d09f61fcbe85 (patch) | |
tree | e0ee12c12b6f03407a8d0b48064e8541da65a64a /Source/cmComputeLinkInformation.cxx | |
parent | c93230ac3838231f2f44986e224da1bdaf9a7dfe (diff) | |
download | CMake-4329a71c128f8a8fca48a8827226d09f61fcbe85.zip CMake-4329a71c128f8a8fca48a8827226d09f61fcbe85.tar.gz CMake-4329a71c128f8a8fca48a8827226d09f61fcbe85.tar.bz2 |
cmComputeLinkDepends: Port to cmGeneratorTarget.
Diffstat (limited to 'Source/cmComputeLinkInformation.cxx')
-rw-r--r-- | Source/cmComputeLinkInformation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx index f00a8cf..7a516e2 100644 --- a/Source/cmComputeLinkInformation.cxx +++ b/Source/cmComputeLinkInformation.cxx @@ -497,7 +497,7 @@ bool cmComputeLinkInformation::Compute() } // Compute the ordered link line items. - cmComputeLinkDepends cld(this->Target->Target, this->Config); + cmComputeLinkDepends cld(this->Target, this->Config); cld.SetOldLinkDirMode(this->OldLinkDirMode); cmComputeLinkDepends::EntryVector const& linkEntries = cld.Compute(); |