summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2012-01-17 21:22:10 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2012-01-17 21:22:10 (GMT)
commit48f159f87110b0759c44a5b28b7a2098d3bd30cf (patch)
treebbabd0771c2e5a33134524bbe91ff72e4700fb9f /Source
parent4dc612f4b54f55b63782033ed10ed4c1b0473ce9 (diff)
parent655a7dd1d41ac9d44d1f6455959809230bddcd78 (diff)
downloadCMake-48f159f87110b0759c44a5b28b7a2098d3bd30cf.zip
CMake-48f159f87110b0759c44a5b28b7a2098d3bd30cf.tar.gz
CMake-48f159f87110b0759c44a5b28b7a2098d3bd30cf.tar.bz2
Merge topic 'vs10-fix-pdbname-issue-12328'
655a7dd VS10: Fix /pdb option vcxproj element name (#12328)
Diffstat (limited to 'Source')
-rw-r--r--Source/cmVisualStudio10TargetGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx
index a219ae9..449adc1 100644
--- a/Source/cmVisualStudio10TargetGenerator.cxx
+++ b/Source/cmVisualStudio10TargetGenerator.cxx
@@ -1490,7 +1490,7 @@ void cmVisualStudio10TargetGenerator::WriteLinkOptions(std::string const&
imLib += targetNameImport;
linkOptions.AddFlag("ImportLibrary", imLib.c_str());
- linkOptions.AddFlag("ProgramDataBaseFileName", pdb.c_str());
+ linkOptions.AddFlag("ProgramDataBaseFile", pdb.c_str());
linkOptions.Parse(flags.c_str());
if(!this->ModuleDefinitionFile.empty())
{