| 376 | return this->GetFullNameInternalComponents(config, artifact).prefix; |
| 377 | } |
| 378 | std::string cmGeneratorTarget::GetFileSuffix( |
| 379 | std::string const& config, cmStateEnums::ArtifactType artifact) const |
| 380 | { |
| 381 | if (this->IsImported()) { |
| 382 | cmValue suffix = this->GetFileSuffixInternal(config, artifact); |
| 383 | return suffix ? *suffix : std::string(); |
| 384 | } |
| 385 | return this->GetFullNameInternalComponents(config, artifact).suffix; |
| 386 | } |
| 387 | |
| 388 | std::string cmGeneratorTarget::GetFilePostfix(std::string const& config) const |
| 389 | { |
no test coverage detected