[Cmake-commits] CMake branch, master, updated. v3.2.2-822-g5e0e65c

Brad King brad.king at kitware.com
Mon Apr 20 14:02:54 EDT 2015


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  5e0e65c18926b0a9c5b66ff4ec93d45cc008d383 (commit)
       via  66b641f443a1d3fc8b5f74233307ba9b0929d340 (commit)
       via  48004d9dbeb2af20d3a8df66670323d924a3f4c6 (commit)
       via  051d8be17f1b36d52041bfe61856b926e36dfb8c (commit)
      from  8056dda8a2406b63c94d4aca3f79187747c0a120 (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=5e0e65c18926b0a9c5b66ff4ec93d45cc008d383
commit 5e0e65c18926b0a9c5b66ff4ec93d45cc008d383
Merge: 8056dda 66b641f
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Apr 20 14:02:52 2015 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Apr 20 14:02:52 2015 -0400

    Merge topic 'add-GreenHills-MULTI-generator'
    
    66b641f4 Help: Add notes for topic 'add-GreenHills-MULTI-generator'
    48004d9d Add a 'Green Hills MULTI' generator on Windows
    051d8be1 cmLocalGenerator: Constify some cmTarget and cmGeneratorTarget arguments


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

Summary of changes:
 Help/generator/Green Hills MULTI.rst               |   16 +
 Help/manual/cmake-generators.7.rst                 |    1 +
 Help/manual/cmake-variables.7.rst                  |    5 +
 .../release/dev/add-GreenHills-MULTI-generator.rst |    8 +
 .../variable/CMAKE_LANG_GHS_KERNEL_FLAGS_DEBUG.rst |    6 +
 .../CMAKE_LANG_GHS_KERNEL_FLAGS_MINSIZEREL.rst     |    7 +
 .../CMAKE_LANG_GHS_KERNEL_FLAGS_RELEASE.rst        |    6 +
 .../CMAKE_LANG_GHS_KERNEL_FLAGS_RELWITHDEBINFO.rst |    7 +
 Help/variable/CMAKE_MAKE_PROGRAM.rst               |    4 +
 Help/variable/CMAKE_SYSTEM_PROCESSOR.rst           |    2 +
 Help/variable/GHS-MULTI.rst                        |    4 +
 Modules/Compiler/GHS-C.cmake                       |   27 +
 Modules/Compiler/GHS-CXX.cmake                     |   31 +
 Modules/Compiler/GHS-DetermineCompiler.cmake       |    6 +
 Modules/FindBoost.cmake                            |    5 +-
 Modules/Platform/GHS-MULTI-Initialize.cmake        |   29 +
 Modules/Platform/GHS-MULTI.cmake                   |   27 +
 Source/CMakeLists.txt                              |    9 +
 Source/cmGhsMultiGpj.cxx                           |   44 ++
 Source/cmGhsMultiGpj.h                             |   34 ++
 Source/cmGhsMultiTargetGenerator.cxx               |  600 ++++++++++++++++++++
 Source/cmGhsMultiTargetGenerator.h                 |  119 ++++
 Source/cmGlobalGhsMultiGenerator.cxx               |  548 ++++++++++++++++++
 Source/cmGlobalGhsMultiGenerator.h                 |  127 +++++
 Source/cmGlobalNinjaGenerator.cxx                  |    1 +
 Source/cmLocalGenerator.cxx                        |   14 +-
 Source/cmLocalGenerator.h                          |    9 +-
 Source/cmLocalGhsMultiGenerator.cxx                |   55 ++
 Source/cmLocalGhsMultiGenerator.h                  |   56 ++
 Source/cmake.cxx                                   |    3 +
 Tests/CMakeLists.txt                               |   17 +
 Tests/GhsMulti/CMakeLists.txt                      |    4 +
 Tests/GhsMulti/ReturnNum/App/CMakeLists.txt        |    4 +
 Tests/GhsMulti/ReturnNum/App/Main.c                |    8 +
 Tests/GhsMulti/ReturnNum/CMakeLists.txt            |    3 +
 Tests/GhsMulti/ReturnNum/Int/AppDD.int             |   12 +
 Tests/GhsMulti/ReturnNum/Int/CMakeLists.txt        |    1 +
 Tests/GhsMulti/ReturnNum/Int/Default.bsp           |   35 ++
 Tests/GhsMulti/ReturnNum/Lib/CMakeLists.txt        |    1 +
 Tests/GhsMulti/ReturnNum/Lib/HelperFun.c           |    4 +
 Tests/GhsMulti/ReturnNum/Lib/HelperFun.h           |    1 +
 41 files changed, 1889 insertions(+), 11 deletions(-)
 create mode 100644 Help/generator/Green Hills MULTI.rst
 create mode 100644 Help/release/dev/add-GreenHills-MULTI-generator.rst
 create mode 100644 Help/variable/CMAKE_LANG_GHS_KERNEL_FLAGS_DEBUG.rst
 create mode 100644 Help/variable/CMAKE_LANG_GHS_KERNEL_FLAGS_MINSIZEREL.rst
 create mode 100644 Help/variable/CMAKE_LANG_GHS_KERNEL_FLAGS_RELEASE.rst
 create mode 100644 Help/variable/CMAKE_LANG_GHS_KERNEL_FLAGS_RELWITHDEBINFO.rst
 create mode 100644 Help/variable/GHS-MULTI.rst
 create mode 100644 Modules/Compiler/GHS-C.cmake
 create mode 100644 Modules/Compiler/GHS-CXX.cmake
 create mode 100644 Modules/Compiler/GHS-DetermineCompiler.cmake
 create mode 100644 Modules/Platform/GHS-MULTI-Initialize.cmake
 create mode 100644 Modules/Platform/GHS-MULTI.cmake
 create mode 100644 Source/cmGhsMultiGpj.cxx
 create mode 100644 Source/cmGhsMultiGpj.h
 create mode 100644 Source/cmGhsMultiTargetGenerator.cxx
 create mode 100644 Source/cmGhsMultiTargetGenerator.h
 create mode 100644 Source/cmGlobalGhsMultiGenerator.cxx
 create mode 100644 Source/cmGlobalGhsMultiGenerator.h
 create mode 100644 Source/cmLocalGhsMultiGenerator.cxx
 create mode 100644 Source/cmLocalGhsMultiGenerator.h
 create mode 100644 Tests/GhsMulti/CMakeLists.txt
 create mode 100644 Tests/GhsMulti/ReturnNum/App/CMakeLists.txt
 create mode 100644 Tests/GhsMulti/ReturnNum/App/Main.c
 create mode 100644 Tests/GhsMulti/ReturnNum/CMakeLists.txt
 create mode 100644 Tests/GhsMulti/ReturnNum/Int/AppDD.int
 create mode 100644 Tests/GhsMulti/ReturnNum/Int/CMakeLists.txt
 create mode 100644 Tests/GhsMulti/ReturnNum/Int/Default.bsp
 create mode 100644 Tests/GhsMulti/ReturnNum/Lib/CMakeLists.txt
 create mode 100644 Tests/GhsMulti/ReturnNum/Lib/HelperFun.c
 create mode 100644 Tests/GhsMulti/ReturnNum/Lib/HelperFun.h


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list