ENH: fix for 64 bit cmake on mac

This commit is contained in:
Bill Hoffman 2008-05-08 21:14:16 -04:00
parent b7ed54c950
commit 8f4fb4ba2a
1 changed files with 4 additions and 0 deletions

View File

@ -69,6 +69,10 @@ cmXCodeObject::cmXCodeObject(PBXType ptype, Type type)
this->Id += "0";
}
}
if(this->Id.size() > 24)
{
this->Id = this->Id.substr(0,24);
}
this->TypeValue = type;
if(this->TypeValue == OBJECT)
{