ENH: fix for 64 bit cmake on mac
This commit is contained in:
parent
b7ed54c950
commit
8f4fb4ba2a
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue