| 5118 | } |
| 5119 | |
| 5120 | void cmGeneratorTarget::ComputeLinkImplementationLanguages( |
| 5121 | std::string const& config, cmOptionalLinkImplementation& impl) const |
| 5122 | { |
| 5123 | // This target needs runtime libraries for its source languages. |
| 5124 | std::set<std::string> languages; |
| 5125 | // Get languages used in our source files. |
| 5126 | this->GetLanguages(languages, config); |
| 5127 | // Copy the set of languages to the link implementation. |
| 5128 | impl.Languages.insert(impl.Languages.begin(), languages.begin(), |
| 5129 | languages.end()); |
| 5130 | } |
| 5131 | |
| 5132 | bool cmGeneratorTarget::HaveBuildTreeRPATH(std::string const& config) const |
| 5133 | { |
no test coverage detected