| 5087 | } |
| 5088 | |
| 5089 | bool cmGeneratorTarget::IsLanguageUsed(std::string const& language, |
| 5090 | std::string const& config) const |
| 5091 | { |
| 5092 | std::set<std::string> languages; |
| 5093 | this->GetLanguages(languages, config); |
| 5094 | return languages.count(language); |
| 5095 | } |
| 5096 | |
| 5097 | bool cmGeneratorTarget::IsCSharpOnly() const |
| 5098 | { |
no test coverage detected