ENH: fix a few more xcode things
This commit is contained in:
parent
df730d29de
commit
e2ff9a73fa
|
@ -113,11 +113,11 @@ cmGlobalXCodeGenerator::CreateXCodeSourceFile(cmLocalGenerator* lg,
|
|||
cmXCodeObject* settings = this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
|
||||
buildFile->AddAttribute("settings", settings);
|
||||
fileRef->AddAttribute("fileEncoding", this->CreateString("4"));
|
||||
fileRef->AddAttribute("lastKnownFileType", this->CreateString("sourcecode.cpp.cpp;"));
|
||||
fileRef->AddAttribute("lastKnownFileType", this->CreateString("sourcecode.cpp.cpp"));
|
||||
fileRef->AddAttribute("path", this->CreateString(
|
||||
lg->ConvertToRelativeOutputPath(sf->GetFullPath().c_str()).c_str()));
|
||||
fileRef->AddAttribute("refType", this->CreateString("4"));
|
||||
fileRef->AddAttribute("sourceTree", this->CreateString("<group>"));
|
||||
fileRef->AddAttribute("sourceTree", this->CreateString("\"<group>\""));
|
||||
return buildFile;
|
||||
}
|
||||
|
||||
|
|
|
@ -50,14 +50,14 @@ void cmXCodeObject::Print(std::ostream& out)
|
|||
}
|
||||
else if(object->m_Type == OBJECT_LIST)
|
||||
{
|
||||
out << i->first << " = {\n";
|
||||
out << i->first << " = (\n";
|
||||
for(unsigned int k = 0; k < i->second->m_List.size(); k++)
|
||||
{
|
||||
cmXCodeObject::Indent(4, out);
|
||||
out << i->second->m_List[k]->m_Id << ",\n";
|
||||
}
|
||||
cmXCodeObject::Indent(3, out);
|
||||
out << "};\n";
|
||||
out << ");\n";
|
||||
}
|
||||
else if(object->m_Type == ATTRIBUTE_GROUP)
|
||||
{
|
||||
|
@ -66,8 +66,15 @@ void cmXCodeObject::Print(std::ostream& out)
|
|||
for(j = object->m_ObjectAttributes.begin(); j != object->m_ObjectAttributes.end(); ++j)
|
||||
{
|
||||
cmXCodeObject::Indent(4, out);
|
||||
if(object->m_String.size() )
|
||||
{
|
||||
out << j->first << " = " << j->second->m_String << ";\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
out << j->first << " = " << "\"\";\n";
|
||||
}
|
||||
}
|
||||
cmXCodeObject::Indent(3, out);
|
||||
out << "};\n";
|
||||
}
|
||||
|
@ -76,9 +83,16 @@ void cmXCodeObject::Print(std::ostream& out)
|
|||
out << i->first << " = " << object->m_Object->m_Id << ";\n";
|
||||
}
|
||||
else if(object->m_Type == STRING)
|
||||
{
|
||||
if(object->m_String.size() )
|
||||
{
|
||||
out << i->first << " = " << object->m_String << ";\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
out << i->first << " = " << "\"\";\n";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
out << "what is this?? " << i->first << "\n";
|
||||
|
|
Loading…
Reference in New Issue