diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:39:17 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-08 23:04:37 (GMT) |
commit | 50dc9b44404f4f31aa24cf17247f10539c3807b2 (patch) | |
tree | 094bd641833f511b4659a7372775fcf6f9f7d501 /Source/cmTarget.cxx | |
parent | 8b0168863ed121c7d9f05e3282e2f59490ff6c42 (diff) | |
download | CMake-50dc9b44404f4f31aa24cf17247f10539c3807b2.zip CMake-50dc9b44404f4f31aa24cf17247f10539c3807b2.tar.gz CMake-50dc9b44404f4f31aa24cf17247f10539c3807b2.tar.bz2 |
cmGeneratorTarget: Move GetPDBDirectory from cmTarget.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 0f8b3b0..0fc0423 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -1771,17 +1771,6 @@ cmTarget::OutputInfo const* cmTarget::GetOutputInfo( } //---------------------------------------------------------------------------- -std::string cmTarget::GetPDBDirectory(const std::string& config) const -{ - if(OutputInfo const* info = this->GetOutputInfo(config)) - { - // Return the directory in which the target will be built. - return info->PdbDir; - } - return ""; -} - -//---------------------------------------------------------------------------- const char* cmTarget::ImportedGetLocation(const std::string& config) const { static std::string location; |