BUG: Fix issue #8253 - handle xib file extension in Xcode projects so that double clicking on xib files opens them up in Interface Builder. Thanks to baron_roberts for the patch.
This commit is contained in:
parent
1bf669207b
commit
6e87aa49e6
|
@ -556,6 +556,10 @@ cmGlobalXCodeGenerator::CreateXCodeFileReference(cmSourceFile* sf,
|
||||||
{
|
{
|
||||||
sourcecode = "compiled.mach-o.objfile";
|
sourcecode = "compiled.mach-o.objfile";
|
||||||
}
|
}
|
||||||
|
else if(ext == "xib")
|
||||||
|
{
|
||||||
|
sourcecode = "file.xib";
|
||||||
|
}
|
||||||
else if(ext == "mm")
|
else if(ext == "mm")
|
||||||
{
|
{
|
||||||
sourcecode += ".cpp.objcpp";
|
sourcecode += ".cpp.objcpp";
|
||||||
|
|
Loading…
Reference in New Issue