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
1 changed files with 4 additions and 0 deletions

View File

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