summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-01-27 21:43:18 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2005-01-27 21:43:18 (GMT)
commite2ff9a73fa46b29b6d44378de1fd9369dceee308 (patch)
treedb69d587f1aa5c325dbac9c039ebc9affee509cf /Source/cmGlobalXCodeGenerator.cxx
parentdf730d29de051d6f05012f9765ac344a0fecf97f (diff)
downloadCMake-e2ff9a73fa46b29b6d44378de1fd9369dceee308.zip
CMake-e2ff9a73fa46b29b6d44378de1fd9369dceee308.tar.gz
CMake-e2ff9a73fa46b29b6d44378de1fd9369dceee308.tar.bz2
ENH: fix a few more xcode things
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 6f8d1d9..0a42643 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -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;
}