Browse Source

Xcode: Add comment after root object

Gregor Jasny 10 years ago
parent
commit
2fe8bca580
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Source/cmGlobalXCodeGenerator.cxx

+ 2 - 1
Source/cmGlobalXCodeGenerator.cxx

@@ -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";
 }