[Cmake-commits] CMake branch, master, updated. v2.8.8-582-ga51e152

David Cole david.cole at kitware.com
Tue Jul 24 17:03:48 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, master has been updated
       via  a51e1529e79ef46c8f7f346328c788a4e630e474 (commit)
       via  1fc8df9ca22c23f42afa94a949918cda008b07ce (commit)
       via  7a3ecf5ed5eb12d39f4fb14c821efda0b6a64031 (commit)
       via  9f7dc8391746f41b12b90625ad7aa364d2091ebf (commit)
       via  5d365b26ec6ce089f1a5e0bfed523cb5f916f1da (commit)
       via  d569f3ef15cd05f3a42788dba26abd1e0846c59e (commit)
       via  52160bf68f2d3b948efda5a7a64642e7e0969d9e (commit)
       via  56aeac6e6424f54455850f54f6b71ae89f065fd3 (commit)
       via  7a6bc9e987b1f98529b5a43846eaa9fc7921f9da (commit)
       via  44ba4cfdb6471506db37634b032cf4fa3784f4f9 (commit)
       via  7751966297e3b68b6c9904300f96bb57882af11a (commit)
       via  c3988ee871c99e31ad4d10e9033d89da902d5694 (commit)
       via  f8e0a5109f104e894f450049a6c97f53bd378dae (commit)
       via  f36c7b0bbe79592c7540740fe9cef747346ae2a4 (commit)
       via  5d885db416a4cec236ba6422868dc3db3d766bc4 (commit)
       via  3b2a01e80ef0faf626afd4c5031395c00e1c9ecd (commit)
       via  7bb56c511eaabf2071cd311b6cf14453651127e4 (commit)
       via  03bdaf545369d4438a8aece8d3cec603d3a99727 (commit)
       via  54d9713adb016423d20c610163726f80da435588 (commit)
       via  10686a17f4457fd6032543992538850be5cc8d88 (commit)
       via  a1b803349b51a9a814cd8e309832991306ef2cf0 (commit)
       via  3ba74ad9d586816f7c60cc6f527148edf982871c (commit)
       via  aff0029ee3d6be52f9fefc00c2ca416459a38b32 (commit)
       via  a7b4e3a57b418aa4569cf3bbd484212e9b9b5c77 (commit)
       via  21f156c03bec7595b58862a58a3446ec453f7d85 (commit)
      from  c1bbdbff57651a24fd8d7d5abe67dd24e7e6ed27 (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=a51e1529e79ef46c8f7f346328c788a4e630e474
commit a51e1529e79ef46c8f7f346328c788a4e630e474
Merge: c1bbdbf 1fc8df9
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Tue Jul 24 17:03:46 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Jul 24 17:03:46 2012 -0400

    Merge topic 'ninja-fix-macosx'
    
    1fc8df9 Add missing this->.
    7a3ecf5 Fix memory leak in Makefile generator.
    9f7dc83 Ninja: also bootstrap ninja files
    5d365b2 Ninja: enable ninja support everywhere
    d569f3e Ninja: void function can't return a value
    52160bf Ninja: enable ninja on Mac so all Mac CDash-builds are tested, cleanup later
    56aeac6 Ninja: fixes for bcc
    7a6bc9e Ninja: remove 'this' from member initializer list
    44ba4cf Ninja: remove warnings
    7751966 Ninja: remove 'friend' in ninja code
    c3988ee Re-factor OS X content generator start up.
    f8e0a51 Re-factor framework directory computation.
    f36c7b0 Re-factor Mac OS X content directory computation.
    5d885db Re-factor bundle content copying rules generation.
    3b2a01e Ninja: Use same echo message as makefiles.
    7bb56c5 Re-factor CFBundle generation.
    ...


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

Summary of changes:
 Source/CMakeLists.txt                          |   55 ++----
 Source/QtDialog/CMakeLists.txt                 |    9 +-
 Source/cmExtraCodeBlocksGenerator.cxx          |    2 -
 Source/cmExtraEclipseCDT4Generator.cxx         |    2 -
 Source/cmGlobalNinjaGenerator.cxx              |   47 +++++
 Source/cmGlobalNinjaGenerator.h                |  106 ++++++-----
 Source/cmLocalNinjaGenerator.cxx               |    2 +-
 Source/cmLocalNinjaGenerator.h                 |   62 +++---
 Source/cmMakefileExecutableTargetGenerator.cxx |   45 ++---
 Source/cmMakefileExecutableTargetGenerator.h   |    4 +-
 Source/cmMakefileLibraryTargetGenerator.cxx    |  172 +++---------------
 Source/cmMakefileLibraryTargetGenerator.h      |    9 +-
 Source/cmMakefileTargetGenerator.cxx           |   87 ++++-----
 Source/cmMakefileTargetGenerator.h             |   20 ++-
 Source/cmMakefileUtilityTargetGenerator.cxx    |   13 ++
 Source/cmMakefileUtilityTargetGenerator.h      |    7 +-
 Source/cmNinjaNormalTargetGenerator.cxx        |   59 +++++-
 Source/cmNinjaNormalTargetGenerator.h          |    4 +
 Source/cmNinjaTargetGenerator.cxx              |   51 +++++-
 Source/cmNinjaTargetGenerator.h                |   22 +++
 Source/cmOSXBundleGenerator.cxx                |  236 ++++++++++++++++++++++++
 Source/cmOSXBundleGenerator.h                  |   71 +++++++
 Source/cmTarget.cxx                            |  112 +++++++----
 Source/cmTarget.h                              |   16 ++
 Source/cmake.cxx                               |    6 +-
 Tests/CMakeLists.txt                           |   66 ++++----
 bootstrap                                      |   22 ++-
 27 files changed, 845 insertions(+), 462 deletions(-)
 create mode 100644 Source/cmOSXBundleGenerator.cxx
 create mode 100644 Source/cmOSXBundleGenerator.h


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list