| 118 | } |
| 119 | |
| 120 | std::string cmNinjaTargetGenerator::LanguageCompilerRule( |
| 121 | std::string const& lang, std::string const& config, |
| 122 | WithScanning withScanning) const |
| 123 | { |
| 124 | return cmStrCat( |
| 125 | lang, "_COMPILER__", |
| 126 | cmGlobalNinjaGenerator::EncodeRuleName(this->GeneratorTarget->GetName()), |
| 127 | withScanning == WithScanning::Yes ? "_scanned_" : "_unscanned_", config); |
| 128 | } |
| 129 | |
| 130 | std::string cmNinjaTargetGenerator::LanguagePreprocessAndScanRule( |
| 131 | std::string const& lang, std::string const& config) const |
no test coverage detected