| 201 | } |
| 202 | |
| 203 | std::string cmNinjaNormalTargetGenerator::LanguageLinkerRule( |
| 204 | std::string const& config) const |
| 205 | { |
| 206 | return cmStrCat( |
| 207 | this->TargetLinkLanguage(config), '_', |
| 208 | cmState::GetTargetTypeName(this->GetGeneratorTarget()->GetType()), |
| 209 | "_LINKER__", |
| 210 | cmGlobalNinjaGenerator::EncodeRuleName( |
| 211 | this->GetGeneratorTarget()->GetName()), |
| 212 | '_', config); |
| 213 | } |
| 214 | |
| 215 | std::string cmNinjaNormalTargetGenerator::LanguageLinkerDeviceRule( |
| 216 | std::string const& config) const |
no test coverage detected