Xcode: Write refType only for Xcode 1.5

This field is not expected by newer versions.
This commit is contained in:
Gregor Jasny 2016-02-08 19:39:05 +01:00 committed by Brad King
parent 7e32bd945a
commit 572797f984
1 changed files with 4 additions and 1 deletions

View File

@ -2805,7 +2805,10 @@ cmGlobalXCodeGenerator::CreateXCodeTarget(cmGeneratorTarget* gtgt,
fullName = gtgt->GetFullName(defConfig.c_str());
}
fileRef->AddAttribute("path", this->CreateString(fullName.c_str()));
fileRef->AddAttribute("refType", this->CreateString("0"));
if(this->XcodeVersion == 15)
{
fileRef->AddAttribute("refType", this->CreateString("0"));
}
fileRef->AddAttribute("sourceTree",
this->CreateString("BUILT_PRODUCTS_DIR"));
fileRef->SetComment(gtgt->GetName().c_str());