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

Method cmSourceGroup

Source/cmSourceGroup.cxx:18–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16};
17
18cmSourceGroup::cmSourceGroup(std::string name, char const* regex,
19 char const* parentName)
20 : Name(std::move(name))
21{
22 this->Internal = cm::make_unique<cmSourceGroupInternals>();
23 this->SetGroupRegex(regex);
24 if (parentName) {
25 this->FullName = cmStrCat(parentName, '\\');
26 }
27 this->FullName += this->Name;
28}
29
30cmSourceGroup::~cmSourceGroup() = default;
31

Callers

nothing calls this directly

Calls 3

SetGroupRegexMethod · 0.95
moveFunction · 0.85
cmStrCatFunction · 0.70

Tested by

no test coverage detected