diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-01-28 21:26:03 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-01-28 21:26:03 (GMT) |
commit | bbba869cfc3755737e9c779bfdc2be688ae9ff2a (patch) | |
tree | b1bb5ef21b18ef10f4faa58eb85b0987a12bbedd | |
parent | 97cd3809706b78bd827204fe76bc91b70850c00b (diff) | |
download | CMake-bbba869cfc3755737e9c779bfdc2be688ae9ff2a.zip CMake-bbba869cfc3755737e9c779bfdc2be688ae9ff2a.tar.gz CMake-bbba869cfc3755737e9c779bfdc2be688ae9ff2a.tar.bz2 |
ENH: use absolute paths
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 20385bf..3814b90 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -123,7 +123,7 @@ cmGlobalXCodeGenerator::CreateXCodeSourceFile(cmLocalGenerator* lg, 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("\"<absolute>\"")); return buildFile; } |