summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileLibraryTargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-02-21 14:25:30 (GMT)
committerBrad King <brad.king@kitware.com>2014-02-24 18:44:24 (GMT)
commitb4aac0caca76c7d2041556785799b5ea1bbf1ce7 (patch)
tree111998344d4947512e6f1317704aab1fd41f9812 /Source/cmMakefileLibraryTargetGenerator.cxx
parentfb5b48bb2741424e184cfa1c5e8026372714df96 (diff)
downloadCMake-b4aac0caca76c7d2041556785799b5ea1bbf1ce7.zip
CMake-b4aac0caca76c7d2041556785799b5ea1bbf1ce7.tar.gz
CMake-b4aac0caca76c7d2041556785799b5ea1bbf1ce7.tar.bz2
Makefile: Fix per-config linker PDB output directory
Also, now that all call sites of cmTarget::GetPDBName and cmTarget::GetPDBDirectory pass the configuration, make the argument non-optional.
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.cxx')
-rw-r--r--Source/cmMakefileLibraryTargetGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx
index d6a0cd4..b9af638 100644
--- a/Source/cmMakefileLibraryTargetGenerator.cxx
+++ b/Source/cmMakefileLibraryTargetGenerator.cxx
@@ -321,7 +321,7 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules
}
}
- std::string pdbOutputPath = this->Target->GetPDBDirectory();
+ std::string pdbOutputPath = this->Target->GetPDBDirectory(this->ConfigName);
cmSystemTools::MakeDirectory(pdbOutputPath.c_str());
pdbOutputPath += "/";