| 297 | } |
| 298 | |
| 299 | void cmGlobalFastbuildGenerator::EnableLanguage( |
| 300 | std::vector<std::string> const& lang, cmMakefile* mf, bool optional) |
| 301 | { |
| 302 | this->cmGlobalGenerator::EnableLanguage(lang, mf, optional); |
| 303 | for (std::string const& l : lang) { |
| 304 | if (l == "NONE") { |
| 305 | continue; |
| 306 | } |
| 307 | this->ResolveLanguageCompiler(l, mf, optional); |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | bool cmGlobalFastbuildGenerator::FindMakeProgram(cmMakefile* mf) |
| 312 | { |
nothing calls this directly
no test coverage detected