ENH: use better names for files

This commit is contained in:
Andy Cedilnik 2005-03-22 10:29:34 -05:00
parent aa69a14495
commit 6baf2119ca
1 changed files with 9 additions and 0 deletions

View File

@ -392,6 +392,15 @@ cmGlobalXCodeGenerator::CreateXCodeSourceFile(cmLocalGenerator* lg,
this->CreateString(sourcecode.c_str()));
std::string path =
this->ConvertToRelativeForXCode(sf->GetFullPath().c_str());
std::string file =
cmSystemTools::RelativePath(m_CurrentMakefile->GetHomeDirectory(),
sf->GetFullPath().c_str());
// std::string dir;
// std::string file;
// cmSystemTools::SplitProgramPath(sf->GetFullPath().c_str(),
// dir, file);
fileRef->AddAttribute("name", this->CreateString(file.c_str()));
fileRef->AddAttribute("path", this->CreateString(path.c_str()));
fileRef->AddAttribute("refType", this->CreateString("4"));
if(path.size() > 1 && path[0] == '.' && path[1] == '.')