| 1255 | } |
| 1256 | |
| 1257 | bool cmGlobalGenerator::IgnoreFile(cm::string_view ext) const |
| 1258 | { |
| 1259 | if (!this->GetLanguageFromExtension(ext).empty()) { |
| 1260 | return false; |
| 1261 | } |
| 1262 | return (this->IgnoreExtensions.count(std::string(ext)) > 0); |
| 1263 | } |
| 1264 | |
| 1265 | bool cmGlobalGenerator::GetLanguageEnabled(std::string const& l) const |
| 1266 | { |
no test coverage detected