summaryrefslogtreecommitdiff
path: root/Source/cmMakefileLibraryTargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-02-21 09:25:30 -0500
committerBrad King <brad.king@kitware.com>2014-02-24 13:44:24 -0500
commitb4aac0caca76c7d2041556785799b5ea1bbf1ce7 (patch)
tree111998344d4947512e6f1317704aab1fd41f9812 /Source/cmMakefileLibraryTargetGenerator.cxx
parentfb5b48bb2741424e184cfa1c5e8026372714df96 (diff)
downloadcmake-b4aac0caca76c7d2041556785799b5ea1bbf1ce7.tar.gz
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 d6a0cd4b20..b9af638153 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 += "/";