| 367 | } |
| 368 | |
| 369 | std::string cmGeneratorTarget::GetFilePrefix( |
| 370 | std::string const& config, cmStateEnums::ArtifactType artifact) const |
| 371 | { |
| 372 | if (this->IsImported()) { |
| 373 | cmValue prefix = this->GetFilePrefixInternal(config, artifact); |
| 374 | return prefix ? *prefix : std::string(); |
| 375 | } |
| 376 | return this->GetFullNameInternalComponents(config, artifact).prefix; |
| 377 | } |
| 378 | std::string cmGeneratorTarget::GetFileSuffix( |
| 379 | std::string const& config, cmStateEnums::ArtifactType artifact) const |
| 380 | { |
no test coverage detected