| 4047 | } |
| 4048 | |
| 4049 | std::string cmGeneratorTarget::GetPDBName(std::string const& config) const |
| 4050 | { |
| 4051 | NameComponents const& parts = this->GetFullNameInternalComponents( |
| 4052 | config, cmStateEnums::RuntimeBinaryArtifact); |
| 4053 | |
| 4054 | std::string base = this->GetPDBOutputName(config); |
| 4055 | |
| 4056 | return cmStrCat(parts.prefix, base, |
| 4057 | this->GetPolicyStatusCMP0202() == cmPolicies::NEW |
| 4058 | ? this->GetFilePostfix(config) |
| 4059 | : "", |
| 4060 | ".pdb"); |
| 4061 | } |
| 4062 | |
| 4063 | std::string cmGeneratorTarget::GetObjectDirectory( |
| 4064 | std::string const& config) const |
no test coverage detected