Fix Bug #8928, add support for .xib files for Xcode.

This commit is contained in:
Bill Hoffman 2009-09-21 13:15:11 -04:00
parent 004f9931a9
commit 441cd9ce0b

View File

@ -626,6 +626,10 @@ cmGlobalXCodeGenerator::CreateXCodeFileReference(cmSourceFile* sf,
{ {
sourcecode += ".c.objc"; sourcecode += ".c.objc";
} }
else if(ext == "xib")
{
sourcecode += ".file.xib";
}
else if(ext == "plist") else if(ext == "plist")
{ {
sourcecode += ".text.plist"; sourcecode += ".text.plist";