summaryrefslogtreecommitdiff
path: root/Source/cmGeneratorExpressionNode.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-04 19:19:46 +0200
committerStephen Kelly <steveire@gmail.com>2015-08-05 18:20:46 +0200
commit3df705681be123d93146156fec3166b41b19465a (patch)
tree26ce60be496924a75273a7a4a8e12ae60b1436d0 /Source/cmGeneratorExpressionNode.cxx
parenta45fed81e5fd5d9b280c8dd70d50c9606a982a0b (diff)
downloadcmake-3df705681be123d93146156fec3166b41b19465a.tar.gz
cmGeneratorTarget: Move GetPDBName from cmTarget.
Diffstat (limited to 'Source/cmGeneratorExpressionNode.cxx')
-rw-r--r--Source/cmGeneratorExpressionNode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorExpressionNode.cxx b/Source/cmGeneratorExpressionNode.cxx
index a20579bb0e..49fc96ba72 100644
--- a/Source/cmGeneratorExpressionNode.cxx
+++ b/Source/cmGeneratorExpressionNode.cxx
@@ -1625,7 +1625,7 @@ struct TargetFilesystemArtifactResultCreator<ArtifactPdbTag>
std::string result = target->Target->GetPDBDirectory(context->Config);
result += "/";
- result += target->Target->GetPDBName(context->Config);
+ result += target->GetPDBName(context->Config);
return result;
}
};