| 1490 | } |
| 1491 | |
| 1492 | bool cmGeneratorTarget::IsImportedSharedLibWithoutSOName( |
| 1493 | std::string const& config) const |
| 1494 | { |
| 1495 | if (this->IsImported() && this->GetType() == cmStateEnums::SHARED_LIBRARY) { |
| 1496 | if (cmGeneratorTarget::ImportInfo const* info = |
| 1497 | this->GetImportInfo(config)) { |
| 1498 | return info->NoSOName; |
| 1499 | } |
| 1500 | } |
| 1501 | return false; |
| 1502 | } |
| 1503 | |
| 1504 | bool cmGeneratorTarget::HasMacOSXRpathInstallNameDir( |
| 1505 | std::string const& config) const |
no test coverage detected