diff options
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 1b5138b..5e2001a 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -1376,6 +1376,17 @@ const char* cmTarget::GetPrefixVariableInternal(TargetType type, } //---------------------------------------------------------------------------- +std::string cmTarget::GetPDBName(const char* config) +{ + std::string prefix; + std::string base; + std::string suffix; + this->GetFullNameInternal(this->GetType(), config, false, + prefix, base, suffix); + return prefix+base+".pdb"; +} + +//---------------------------------------------------------------------------- std::string cmTarget::GetFullName(const char* config, bool implib) { return this->GetFullNameInternal(this->GetType(), config, implib); |