| 5130 | } |
| 5131 | |
| 5132 | bool cmGeneratorTarget::HaveBuildTreeRPATH(std::string const& config) const |
| 5133 | { |
| 5134 | if (this->GetPropertyAsBool("SKIP_BUILD_RPATH")) { |
| 5135 | return false; |
| 5136 | } |
| 5137 | std::string build_rpath; |
| 5138 | if (this->GetBuildRPATH(config, build_rpath)) { |
| 5139 | return true; |
| 5140 | } |
| 5141 | if (cmLinkImplementationLibraries const* impl = |
| 5142 | this->GetLinkImplementationLibraries(config, UseTo::Link)) { |
| 5143 | return !impl->Libraries.empty(); |
| 5144 | } |
| 5145 | return false; |
| 5146 | } |
| 5147 | |
| 5148 | bool cmGeneratorTarget::IsNullImpliedByLinkLibraries( |
| 5149 | std::string const& p) const |
no test coverage detected