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

Function getPropertyContents

Source/cmExportFileGenerator.cxx:231–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

229
230namespace {
231void getPropertyContents(cmGeneratorTarget const* tgt, std::string const& prop,
232 std::set<std::string>& ifaceProperties)
233{
234 cmValue p = tgt->GetProperty(prop);
235 if (!p) {
236 return;
237 }
238 cmList content{ *p };
239 ifaceProperties.insert(content.begin(), content.end());
240}
241
242void getCompatibleInterfaceProperties(cmGeneratorTarget const* target,
243 std::set<std::string>& ifaceProperties,

Calls 4

GetPropertyMethod · 0.45
insertMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…