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

Method GetLanguages

Source/cmFastbuildNormalTargetGenerator.cxx:663–672  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

661}
662
663std::set<std::string> cmFastbuildNormalTargetGenerator::GetLanguages()
664{
665 std::set<std::string> result;
666 this->GetGeneratorTarget()->GetLanguages(result, Config);
667 for (std::string const& lang : result) {
668 this->GetGlobalGenerator()->AddCompiler(lang, this->GetMakefile());
669 }
670 LogMessage("Languages: " + cmJoin(result, ", "));
671 return result;
672}
673
674std::unordered_map<std::string, std::string>
675cmFastbuildNormalTargetGenerator::GetCompileObjectCommand() const

Callers

nothing calls this directly

Calls 5

AddCompilerMethod · 0.80
cmJoinFunction · 0.70
GetGeneratorTargetMethod · 0.45
GetGlobalGeneratorMethod · 0.45
GetMakefileMethod · 0.45

Tested by

no test coverage detected