| 512 | } |
| 513 | |
| 514 | void cmGeneratorTarget::ComputeAllConfigCompileLanguages() const |
| 515 | { |
| 516 | std::set<std::string> languages; |
| 517 | std::vector<AllConfigSource> const& sources = this->GetAllConfigSources(); |
| 518 | for (AllConfigSource const& si : sources) { |
| 519 | std::string const& lang = si.Source->GetOrDetermineLanguage(); |
| 520 | if (!lang.empty()) { |
| 521 | languages.emplace(lang); |
| 522 | } |
| 523 | } |
| 524 | this->AllConfigCompileLanguages = languages; |
| 525 | } |
| 526 | |
| 527 | std::set<std::string> cmGeneratorTarget::GetAllConfigCompileLanguages() const |
| 528 | { |
no test coverage detected