summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileTargetGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-05 16:39:17 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-08 23:04:37 (GMT)
commit50dc9b44404f4f31aa24cf17247f10539c3807b2 (patch)
tree094bd641833f511b4659a7372775fcf6f9f7d501 /Source/cmMakefileTargetGenerator.cxx
parent8b0168863ed121c7d9f05e3282e2f59490ff6c42 (diff)
downloadCMake-50dc9b44404f4f31aa24cf17247f10539c3807b2.zip
CMake-50dc9b44404f4f31aa24cf17247f10539c3807b2.tar.gz
CMake-50dc9b44404f4f31aa24cf17247f10539c3807b2.tar.bz2
cmGeneratorTarget: Move GetPDBDirectory from cmTarget.
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r--Source/cmMakefileTargetGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx
index cd499f6..6eafeae 100644
--- a/Source/cmMakefileTargetGenerator.cxx
+++ b/Source/cmMakefileTargetGenerator.cxx
@@ -546,7 +546,8 @@ cmMakefileTargetGenerator
{
targetFullPathReal =
this->GeneratorTarget->GetFullPath(this->ConfigName, false, true);
- targetFullPathPDB = this->Target->GetPDBDirectory(this->ConfigName);
+ targetFullPathPDB =
+ this->GeneratorTarget->GetPDBDirectory(this->ConfigName);
targetFullPathPDB += "/";
targetFullPathPDB += this->GeneratorTarget->GetPDBName(this->ConfigName);
}