summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-09-21 17:15:11 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-09-21 17:15:11 (GMT)
commit441cd9ce0b7e5679a7116683163d0f3069477842 (patch)
treef0ef03cebe7cc6fc07a9e7b471b133c1eb5af97d
parent004f9931a979394a6c1c308ec1e28c159203226d (diff)
downloadCMake-441cd9ce0b7e5679a7116683163d0f3069477842.zip
CMake-441cd9ce0b7e5679a7116683163d0f3069477842.tar.gz
CMake-441cd9ce0b7e5679a7116683163d0f3069477842.tar.bz2
Fix Bug #8928, add support for .xib files for Xcode.
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 9ba2497..bc77630 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -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";