diff options
author | Brad King <brad.king@kitware.com> | 2014-02-21 09:25:30 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-02-24 13:44:24 -0500 |
commit | b4aac0caca76c7d2041556785799b5ea1bbf1ce7 (patch) | |
tree | 111998344d4947512e6f1317704aab1fd41f9812 /Source/cmMakefileLibraryTargetGenerator.cxx | |
parent | fb5b48bb2741424e184cfa1c5e8026372714df96 (diff) | |
download | cmake-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.cxx | 2 |
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 += "/"; |