MCPcopy Index your code
hub / github.com/Kitware/CMake / WriteXCodePBXProj

Method WriteXCodePBXProj

Source/cmGlobalXCodeGenerator.cxx:5271–5292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5269}
5270
5271void cmGlobalXCodeGenerator::WriteXCodePBXProj(std::ostream& fout,
5272 cmLocalGenerator*,
5273 std::vector<cmLocalGenerator*>&)
5274{
5275 SortXCodeObjects();
5276
5277 fout << "// !$*UTF8*$!\n"
5278 "{\n";
5279 cmXCodeObject::Indent(1, fout);
5280 fout << "archiveVersion = 1;\n";
5281 cmXCodeObject::Indent(1, fout);
5282 fout << "classes = {\n";
5283 cmXCodeObject::Indent(1, fout);
5284 fout << "};\n";
5285 cmXCodeObject::Indent(1, fout);
5286 fout << "objectVersion = 46;\n";
5287 cmXCode21Object::PrintList(this->XCodeObjects, fout);
5288 cmXCodeObject::Indent(1, fout);
5289 fout << "rootObject = " << this->RootObject->GetId()
5290 << " /* Project object */;\n"
5291 "}\n";
5292}
5293
5294char const* cmGlobalXCodeGenerator::GetCMakeCFGIntDir() const
5295{

Callers 1

OutputXCodeProjectMethod · 0.95

Calls 1

GetIdMethod · 0.45

Tested by

no test coverage detected