MCPcopy Create free account
hub / github.com/Kitware/CMake / EnableLanguage

Method EnableLanguage

Source/cmGlobalFastbuildGenerator.cxx:299–309  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

297}
298
299void 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
311bool cmGlobalFastbuildGenerator::FindMakeProgram(cmMakefile* mf)
312{

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected