| 853 | } |
| 854 | |
| 855 | void cmGeneratorTarget::ComputeLinkImplementationRuntimeLibraries( |
| 856 | std::string const& config, cmOptionalLinkImplementation& impl) const |
| 857 | { |
| 858 | for (std::string const& lang : impl.Languages) { |
| 859 | if ((lang == "CUDA" || lang == "HIP") && |
| 860 | impl.LanguageRuntimeLibraries.find(lang) == |
| 861 | impl.LanguageRuntimeLibraries.end()) { |
| 862 | impl.LanguageRuntimeLibraries[lang] = |
| 863 | this->ComputeImplicitLanguageTargets(lang, config); |
| 864 | } |
| 865 | } |
| 866 | } |
| 867 | |
| 868 | cmLinkInterface const* cmGeneratorTarget::GetImportLinkInterface( |
| 869 | std::string const& config, cmGeneratorTarget const* headTarget, UseTo usage, |
no test coverage detected