MCPcopy Create free account
hub / github.com/Kitware/CMake / IsImportedSharedLibWithoutSOName

Method IsImportedSharedLibWithoutSOName

Source/cmGeneratorTarget.cxx:1492–1502  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1490}
1491
1492bool 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
1504bool cmGeneratorTarget::HasMacOSXRpathInstallNameDir(
1505 std::string const& config) const

Callers 1

AddTargetItemMethod · 0.80

Calls 3

IsImportedMethod · 0.95
GetTypeMethod · 0.95
GetImportInfoMethod · 0.95

Tested by

no test coverage detected