Xcode: Add comment after root object

This commit is contained in:
Gregor Jasny 2015-04-07 19:19:00 +02:00
parent 2e0e205e28
commit 2fe8bca580
1 changed files with 2 additions and 1 deletions

View File

@ -3756,7 +3756,8 @@ cmGlobalXCodeGenerator::WriteXCodePBXProj(std::ostream& fout,
cmXCodeObject::PrintList(this->XCodeObjects, fout);
}
cmXCodeObject::Indent(1, fout);
fout << "rootObject = " << this->RootObject->GetId() << ";\n";
fout << "rootObject = " << this->RootObject->GetId()
<< " /* Project object */;\n";
fout << "}\n";
}