| 6298 | } |
| 6299 | |
| 6300 | bool cmGeneratorTarget::NeedCxxModuleSupport(std::string const& lang, |
| 6301 | std::string const& config) const |
| 6302 | { |
| 6303 | if (lang != "CXX"_s) { |
| 6304 | return false; |
| 6305 | } |
| 6306 | return this->HaveCxxModuleSupport(config) == Cxx20SupportLevel::Supported && |
| 6307 | this->GetGlobalGenerator()->CheckCxxModuleSupport( |
| 6308 | cmGlobalGenerator::CxxModuleSupportQuery::Inspect); |
| 6309 | } |
| 6310 | |
| 6311 | bool cmGeneratorTarget::NeedDyndep(std::string const& lang, |
| 6312 | std::string const& config) const |
no test coverage detected