diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-09-15 23:54:01 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-09-19 15:30:57 +0200 |
commit | 4f5384e75c6a00d110d3fa3f555a3f6a4f31bb46 (patch) | |
tree | 57a48f6e311086bd39520389d700bbb70d4b39d6 /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | 987e12e2f962b6e9ed9f15f8ff486512911b744e (diff) | |
download | cmake-4f5384e75c6a00d110d3fa3f555a3f6a4f31bb46.tar.gz |
Move GetLinkInformation to cmGeneratorTarget
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 3d2828dabe..70aa5f6962 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -1452,7 +1452,7 @@ void cmVisualStudio10TargetGenerator::WriteLinkOptions(std::string const& // Replace spaces in libs with ; cmSystemTools::ReplaceString(libs, " ", ";"); cmComputeLinkInformation* pcli = - this->Target->GetLinkInformation(config.c_str()); + this->GeneratorTarget->GetLinkInformation(config.c_str()); if(!pcli) { cmSystemTools::Error |