| 481 | } |
| 482 | |
| 483 | std::string cmInstallTargetGenerator::GetInstallFilename( |
| 484 | std::string const& config) const |
| 485 | { |
| 486 | NameType nameType = this->ImportLibrary ? NameImplib : NameNormal; |
| 487 | return cmInstallTargetGenerator::GetInstallFilename(this->Target, config, |
| 488 | nameType); |
| 489 | } |
| 490 | |
| 491 | std::string cmInstallTargetGenerator::GetInstallFilename( |
| 492 | cmGeneratorTarget const* target, std::string const& config, |
no test coverage detected