| 804 | } |
| 805 | |
| 806 | cmELF::StringEntry const* cmELF::GetRPath() |
| 807 | { |
| 808 | if (this->Valid() && |
| 809 | (this->Internal->GetFileType() == cmELF::FileTypeExecutable || |
| 810 | this->Internal->GetFileType() == cmELF::FileTypeSharedLibrary)) { |
| 811 | return this->Internal->GetRPath(); |
| 812 | } |
| 813 | return nullptr; |
| 814 | } |
| 815 | |
| 816 | cmELF::StringEntry const* cmELF::GetRunPath() |
| 817 | { |
no test coverage detected