| 661 | } |
| 662 | |
| 663 | std::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 | |
| 674 | std::unordered_map<std::string, std::string> |
| 675 | cmFastbuildNormalTargetGenerator::GetCompileObjectCommand() const |
nothing calls this directly
no test coverage detected