diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:39:17 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-08 23:04:37 (GMT) |
commit | 50dc9b44404f4f31aa24cf17247f10539c3807b2 (patch) | |
tree | 094bd641833f511b4659a7372775fcf6f9f7d501 /Source/cmGeneratorExpressionNode.cxx | |
parent | 8b0168863ed121c7d9f05e3282e2f59490ff6c42 (diff) | |
download | CMake-50dc9b44404f4f31aa24cf17247f10539c3807b2.zip CMake-50dc9b44404f4f31aa24cf17247f10539c3807b2.tar.gz CMake-50dc9b44404f4f31aa24cf17247f10539c3807b2.tar.bz2 |
cmGeneratorTarget: Move GetPDBDirectory from cmTarget.
Diffstat (limited to 'Source/cmGeneratorExpressionNode.cxx')
-rw-r--r-- | Source/cmGeneratorExpressionNode.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorExpressionNode.cxx b/Source/cmGeneratorExpressionNode.cxx index 961705f..fdacc82 100644 --- a/Source/cmGeneratorExpressionNode.cxx +++ b/Source/cmGeneratorExpressionNode.cxx @@ -1631,7 +1631,7 @@ struct TargetFilesystemArtifactResultCreator<ArtifactPdbTag> return std::string(); } - std::string result = target->Target->GetPDBDirectory(context->Config); + std::string result = target->GetPDBDirectory(context->Config); result += "/"; result += target->GetPDBName(context->Config); return result; |