[Cmake-commits] CMake branch, next, updated. v2.8.8-2861-ga0a5a2d

Brad King brad.king at kitware.com
Mon May 14 14:56:46 EDT 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  a0a5a2d2d6c93d5ca6c3a2156a0cedd726a73174 (commit)
       via  d59ba0c591c58f0fe11aa72635680ec72ab12c6c (commit)
      from  6835c5a3969620c1a3127f5931503eec1a255588 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a0a5a2d2d6c93d5ca6c3a2156a0cedd726a73174
commit a0a5a2d2d6c93d5ca6c3a2156a0cedd726a73174
Merge: 6835c5a d59ba0c
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon May 14 14:56:44 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon May 14 14:56:44 2012 -0400

    Merge topic 'xcode-storyboard-files' into next
    
    d59ba0c Xcode: Recognize storyboard source files (#13214)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d59ba0c591c58f0fe11aa72635680ec72ab12c6c
commit d59ba0c591c58f0fe11aa72635680ec72ab12c6c
Author:     Jan Schaffmeister <jan.schaffmeister at avid.com>
AuthorDate: Fri May 11 10:32:00 2012 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon May 14 14:56:20 2012 -0400

    Xcode: Recognize storyboard source files (#13214)

diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 998843f..522f3da 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -723,6 +723,10 @@ GetSourcecodeValueFromFileExtension(const std::string& _ext,
     {
     sourcecode = "file.xib";
     }
+  else if(ext == "storyboard")
+    {
+    sourcecode = "file.storyboard";
+    }
   else if(ext == "mm")
     {
     sourcecode += ".cpp.objcpp";

-----------------------------------------------------------------------

Summary of changes:
 Source/cmGlobalXCodeGenerator.cxx |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list