diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:46 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:46 (GMT) |
commit | 3df705681be123d93146156fec3166b41b19465a (patch) | |
tree | 26ce60be496924a75273a7a4a8e12ae60b1436d0 /Source/cmNinjaTargetGenerator.cxx | |
parent | a45fed81e5fd5d9b280c8dd70d50c9606a982a0b (diff) | |
download | CMake-3df705681be123d93146156fec3166b41b19465a.zip CMake-3df705681be123d93146156fec3166b41b19465a.tar.gz CMake-3df705681be123d93146156fec3166b41b19465a.tar.bz2 |
cmGeneratorTarget: Move GetPDBName from cmTarget.
Diffstat (limited to 'Source/cmNinjaTargetGenerator.cxx')
-rw-r--r-- | Source/cmNinjaTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx index e61ba6f..16e1f48 100644 --- a/Source/cmNinjaTargetGenerator.cxx +++ b/Source/cmNinjaTargetGenerator.cxx @@ -273,7 +273,7 @@ bool cmNinjaTargetGenerator::SetMsvcTargetPdbVariable(cmNinjaVars& vars) const { pdbPath = this->Target->GetPDBDirectory(this->GetConfigName()); pdbPath += "/"; - pdbPath += this->Target->GetPDBName(this->GetConfigName()); + pdbPath += this->GeneratorTarget->GetPDBName(this->GetConfigName()); } if(this->Target->GetType() <= cmTarget::OBJECT_LIBRARY) { |