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

Method GetStaticLibraryLinkOptions

Source/cmGeneratorTarget_Options.cxx:663–673  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

661}
662
663void cmGeneratorTarget::GetStaticLibraryLinkOptions(
664 std::vector<std::string>& result, std::string const& config,
665 std::string const& language) const
666{
667 std::vector<BT<std::string>> tmp =
668 this->GetStaticLibraryLinkOptions(config, language);
669 result.reserve(tmp.size());
670 for (BT<std::string>& v : tmp) {
671 result.emplace_back(std::move(v.Value));
672 }
673}
674
675std::vector<BT<std::string>> cmGeneratorTarget::GetStaticLibraryLinkOptions(
676 std::string const& config, std::string const& language) const

Callers 1

GetStaticLibraryFlagsMethod · 0.80

Calls 8

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

Tested by

no test coverage detected