summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-04-19 20:36:14 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-04-19 20:36:14 (GMT)
commite6ef33f598f7ff74f7b6d7c60f98f883937c385a (patch)
tree860d6cfcf80922a545e02dc8e8b3e89076bbf137 /Source/cmLocalGenerator.cxx
parentf2e2f23392816ba826ebdd0e91851fc0e1aeaed1 (diff)
downloadCMake-e6ef33f598f7ff74f7b6d7c60f98f883937c385a.zip
CMake-e6ef33f598f7ff74f7b6d7c60f98f883937c385a.tar.gz
CMake-e6ef33f598f7ff74f7b6d7c60f98f883937c385a.tar.bz2
ENH: name pdb files for visual studio make based builds
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 765e720..6ada0d9 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -734,6 +734,14 @@ cmLocalGenerator::ExpandRuleVariable(std::string const& variable,
return replaceValues.ObjectsQuoted;
}
}
+ if(replaceValues.TargetPDB )
+ {
+ if(variable == "TARGET_PDB")
+ {
+ return replaceValues.TargetPDB;
+ }
+ }
+
if(replaceValues.Target)
{
if(variable == "TARGET_QUOTED")