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

Method PrintList

Source/cmXCodeObject.cxx:179–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

177}
178
179void cmXCodeObject::PrintList(std::vector<cmXCodeObject*> const& objs,
180 std::ostream& out)
181{
182 cmXCodeObject::Indent(1, out);
183 out << "objects = {\n";
184 for (auto* obj : objs) {
185 if (obj->TypeValue == OBJECT) {
186 obj->Print(out);
187 }
188 }
189 cmXCodeObject::Indent(1, out);
190 out << "};\n";
191}
192
193void cmXCodeObject::CopyAttributes(cmXCodeObject* copy)
194{

Callers

nothing calls this directly

Calls 1

PrintMethod · 0.45

Tested by

no test coverage detected