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 | c93230ac3838231f2f44986e224da1bdaf9a7dfe (patch) | |
tree | a3436e3f2aee006db5d25c7ba4849012cac863b2 /Source/cmGeneratorTarget.cxx | |
parent | ee26add4f4062d8b53f22e161027a573dc03399c (diff) | |
download | CMake-c93230ac3838231f2f44986e224da1bdaf9a7dfe.zip CMake-c93230ac3838231f2f44986e224da1bdaf9a7dfe.tar.gz CMake-c93230ac3838231f2f44986e224da1bdaf9a7dfe.tar.bz2 |
cmComputeLinkInformation: Port to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index c68c2b9..55e2922 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -3166,7 +3166,7 @@ cmGeneratorTarget::GetLinkInformation(const std::string& config) const { // Compute information for this configuration. cmComputeLinkInformation* info = - new cmComputeLinkInformation(this->Target, config); + new cmComputeLinkInformation(this, config); if(!info || !info->Compute()) { delete info; |