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

Method GetLinkDepends

Source/cmGeneratorTarget_Options.cxx:711–720  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

709}
710
711void cmGeneratorTarget::GetLinkDepends(std::vector<std::string>& result,
712 std::string const& config,
713 std::string const& language) const
714{
715 std::vector<BT<std::string>> tmp = this->GetLinkDepends(config, language);
716 result.reserve(tmp.size());
717 for (BT<std::string>& v : tmp) {
718 result.emplace_back(std::move(v.Value));
719 }
720}
721
722std::vector<BT<std::string>> cmGeneratorTarget::GetLinkDepends(
723 std::string const& config, std::string const& language) const

Callers 4

WriteDeviceLinkRuleMethod · 0.80
AppendLinkDependsMethod · 0.80
ComputeLinkDepsMethod · 0.80
AppendLINK_DEPENDSMethod · 0.80

Calls 9

GetPropertyMethod · 0.95
moveFunction · 0.85
AddInterfaceEntriesFunction · 0.85
processOptionsFunction · 0.85
reserveMethod · 0.80
emplace_backMethod · 0.80
sizeMethod · 0.45
GetCMakeInstanceMethod · 0.45

Tested by

no test coverage detected