[Cmake-commits] CMake branch, next, updated. v2.8.2-1058-g9b68430

Brad King brad.king at kitware.com
Tue Oct 12 09:09:30 EDT 2010


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  9b684301aa81ee4690c0094b2d9693aab26ada04 (commit)
       via  8f0a70e5f03eabed8ba25ccf0c47bcbff1f4ff92 (commit)
      from  76ae8c362bf2ce992ed4d6ce9bd50622575ca684 (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=9b684301aa81ee4690c0094b2d9693aab26ada04
commit 9b684301aa81ee4690c0094b2d9693aab26ada04
Merge: 76ae8c3 8f0a70e
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Oct 12 09:09:29 2010 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Oct 12 09:09:29 2010 -0400

    Merge topic 'xcode-hh-files' into next
    
    8f0a70e Xcode: Recognize .hh as C++ (#11307)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8f0a70e5f03eabed8ba25ccf0c47bcbff1f4ff92
commit 8f0a70e5f03eabed8ba25ccf0c47bcbff1f4ff92
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Oct 12 09:06:33 2010 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Tue Oct 12 09:06:33 2010 -0400

    Xcode: Recognize .hh as C++ (#11307)

diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 0976a4d..2f7bc44 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -643,7 +643,7 @@ cmGlobalXCodeGenerator::CreateXCodeFileReference(cmSourceFile* sf,
     sourcecode += ".c.h";
     }
   else if(ext == "hxx" || ext == "hpp" || ext == "txx"
-    || ext == "pch")
+    || ext == "pch" || ext == "hh")
     {
     sourcecode += ".cpp.h";
     }

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list