| 4705 | } |
| 4706 | |
| 4707 | bool cmGeneratorTarget::HaveInstallTreeRPATH(std::string const& config) const |
| 4708 | { |
| 4709 | std::string install_rpath; |
| 4710 | this->GetInstallRPATH(config, install_rpath); |
| 4711 | return !install_rpath.empty() && |
| 4712 | !this->Makefile->IsOn("CMAKE_SKIP_INSTALL_RPATH"); |
| 4713 | } |
| 4714 | |
| 4715 | bool cmGeneratorTarget::GetBuildRPATH(std::string const& config, |
| 4716 | std::string& rpath) const |
no test coverage detected