[Cmake-commits] [cmake-commits] david.cole committed cmGlobalXCodeGenerator.cxx 1.207 1.208

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Feb 19 11:20:12 EST 2009


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv6223/Source

Modified Files:
	cmGlobalXCodeGenerator.cxx 
Log Message:
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.


Index: cmGlobalXCodeGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalXCodeGenerator.cxx,v
retrieving revision 1.207
retrieving revision 1.208
diff -C 2 -d -r1.207 -r1.208
*** cmGlobalXCodeGenerator.cxx	19 Feb 2009 15:31:16 -0000	1.207
--- cmGlobalXCodeGenerator.cxx	19 Feb 2009 16:20:09 -0000	1.208
***************
*** 557,560 ****
--- 557,564 ----
      sourcecode = "compiled.mach-o.objfile";
      }
+   else if(ext == "xib")
+     {
+     sourcecode = "file.xib";
+     }
    else if(ext == "mm")
      {



More information about the Cmake-commits mailing list