| 128 | } |
| 129 | |
| 130 | std::string cmNinjaTargetGenerator::LanguagePreprocessAndScanRule( |
| 131 | std::string const& lang, std::string const& config) const |
| 132 | { |
| 133 | return cmStrCat( |
| 134 | lang, "_PREPROCESS_SCAN__", |
| 135 | cmGlobalNinjaGenerator::EncodeRuleName(this->GeneratorTarget->GetName()), |
| 136 | '_', config); |
| 137 | } |
| 138 | |
| 139 | std::string cmNinjaTargetGenerator::LanguageScanRule( |
| 140 | std::string const& lang, std::string const& config) const |
no test coverage detected