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/cmMakefileTargetGenerator.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/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index f9125fc..b94e151 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -548,7 +548,7 @@ cmMakefileTargetGenerator this->GeneratorTarget->GetFullPath(this->ConfigName, false, true); targetFullPathPDB = this->Target->GetPDBDirectory(this->ConfigName); targetFullPathPDB += "/"; - targetFullPathPDB += this->Target->GetPDBName(this->ConfigName); + targetFullPathPDB += this->GeneratorTarget->GetPDBName(this->ConfigName); } if(this->Target->GetType() <= cmTarget::OBJECT_LIBRARY) { |