| 213 | } |
| 214 | |
| 215 | std::string cmNinjaNormalTargetGenerator::LanguageLinkerDeviceRule( |
| 216 | std::string const& config) const |
| 217 | { |
| 218 | return cmStrCat( |
| 219 | this->TargetLinkLanguage(config), '_', |
| 220 | cmState::GetTargetTypeName(this->GetGeneratorTarget()->GetType()), |
| 221 | "_DEVICE_LINKER__", |
| 222 | cmGlobalNinjaGenerator::EncodeRuleName( |
| 223 | this->GetGeneratorTarget()->GetName()), |
| 224 | '_', config); |
| 225 | } |
| 226 | |
| 227 | std::string cmNinjaNormalTargetGenerator::LanguageLinkerCudaDeviceRule( |
| 228 | std::string const& config) const |
no test coverage detected