| 840 | } |
| 841 | |
| 842 | void cmGeneratorTarget::ComputeLinkInterfaceRuntimeLibraries( |
| 843 | std::string const& config, cmOptionalLinkInterface& iface) const |
| 844 | { |
| 845 | for (std::string const& lang : iface.Languages) { |
| 846 | if ((lang == "CUDA" || lang == "HIP") && |
| 847 | iface.LanguageRuntimeLibraries.find(lang) == |
| 848 | iface.LanguageRuntimeLibraries.end()) { |
| 849 | iface.LanguageRuntimeLibraries[lang] = |
| 850 | this->ComputeImplicitLanguageTargets(lang, config); |
| 851 | } |
| 852 | } |
| 853 | } |
| 854 | |
| 855 | void cmGeneratorTarget::ComputeLinkImplementationRuntimeLibraries( |
| 856 | std::string const& config, cmOptionalLinkImplementation& impl) const |
no test coverage detected