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  82582c96bd86969ee5e1cc6f7bc4e5b12e1717e1 (commit)
       via  d54617d0068fc5acfa2079d1e8de8f38365564ab (commit)
       via  bae604d9a80d5d97c676c85848e37783a153ff19 (commit)
      from  106c769f1d46a2410ff62c3dd4cd02cd1da7fd37 (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=82582c96bd86969ee5e1cc6f7bc4e5b12e1717e1
commit 82582c96bd86969ee5e1cc6f7bc4e5b12e1717e1
Merge: 106c769 d54617d
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Wed Nov 26 13:50:47 2014 -0500
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Wed Nov 26 13:50:47 2014 -0500

    Merge topic 'break-command-strictness'
    
    d54617d0 break: Add policy CMP0055 to check calls strictly
    bae604d9 Track nested loop levels in CMake language with a stack of counters


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

Summary of changes:
 Help/manual/cmake-policies.7.rst                   |    1 +
 Help/policy/CMP0055.rst                            |   17 +++++
 Help/release/dev/break-command-strictness.rst      |    6 ++
 Source/cmBreakCommand.cxx                          |   68 +++++++++++++++++++-
 Source/cmForEachCommand.cxx                        |    8 +++
 Source/cmMakefile.cxx                              |   39 +++++++++++
 Source/cmMakefile.h                                |   21 ++++++
 Source/cmPolicies.cxx                              |    5 ++
 Source/cmPolicies.h                                |    1 +
 Source/cmWhileCommand.cxx                          |    4 ++
 .../CMP0055-NEW-Out-of-Scope-result.txt}           |    0
 .../CMP0055/CMP0055-NEW-Out-of-Scope-stderr.txt    |    4 ++
 .../CMP0055/CMP0055-NEW-Out-of-Scope.cmake         |    4 ++
 .../CMP0055-NEW-Reject-Arguments-result.txt}       |    0
 .../CMP0055-NEW-Reject-Arguments-stderr.txt        |    4 ++
 .../CMP0055/CMP0055-NEW-Reject-Arguments.cmake     |    6 ++
 .../CMP0055-OLD-Out-of-Scope-result.txt}           |    0
 .../CMP0055-OLD-Out-of-Scope-stderr.txt}           |    0
 .../CMP0055/CMP0055-OLD-Out-of-Scope.cmake         |    4 ++
 .../CMP0055-OLD-Reject-Arguments-result.txt}       |    0
 .../CMP0055-OLD-Reject-Arguments-stderr.txt}       |    0
 .../CMP0055/CMP0055-OLD-Reject-Arguments.cmake     |    6 ++
 .../CMP0055-WARN-Out-of-Scope-result.txt}          |    0
 .../CMP0055/CMP0055-WARN-Out-of-Scope-stderr.txt   |    9 +++
 .../CMP0055/CMP0055-WARN-Out-of-Scope.cmake        |    2 +
 .../CMP0055-WARN-Reject-Arguments-result.txt}      |    0
 .../CMP0055-WARN-Reject-Arguments-stderr.txt       |    9 +++
 .../CMP0055/CMP0055-WARN-Reject-Arguments.cmake    |    4 ++
 .../{add_custom_command => CMP0055}/CMakeLists.txt |    0
 Tests/RunCMake/CMP0055/RunCMakeTest.cmake          |    9 +++
 Tests/RunCMake/CMakeLists.txt                      |    1 +
 31 files changed, 231 insertions(+), 1 deletion(-)
 create mode 100644 Help/policy/CMP0055.rst
 create mode 100644 Help/release/dev/break-command-strictness.rst
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => 
CMP0055/CMP0055-NEW-Out-of-Scope-result.txt} (100%)
 create mode 100644 Tests/RunCMake/CMP0055/CMP0055-NEW-Out-of-Scope-stderr.txt
 create mode 100644 Tests/RunCMake/CMP0055/CMP0055-NEW-Out-of-Scope.cmake
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => 
CMP0055/CMP0055-NEW-Reject-Arguments-result.txt} (100%)
 create mode 100644 
Tests/RunCMake/CMP0055/CMP0055-NEW-Reject-Arguments-stderr.txt
 create mode 100644 Tests/RunCMake/CMP0055/CMP0055-NEW-Reject-Arguments.cmake
 copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => 
CMP0055/CMP0055-OLD-Out-of-Scope-result.txt} (100%)
 copy Tests/RunCMake/{CMP0022/CMP0022-NOWARN-exe-stderr.txt => 
CMP0055/CMP0055-OLD-Out-of-Scope-stderr.txt} (100%)
 create mode 100644 Tests/RunCMake/CMP0055/CMP0055-OLD-Out-of-Scope.cmake
 copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => 
CMP0055/CMP0055-OLD-Reject-Arguments-result.txt} (100%)
 copy Tests/RunCMake/{CMP0022/CMP0022-NOWARN-exe-stderr.txt => 
CMP0055/CMP0055-OLD-Reject-Arguments-stderr.txt} (100%)
 create mode 100644 Tests/RunCMake/CMP0055/CMP0055-OLD-Reject-Arguments.cmake
 copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => 
CMP0055/CMP0055-WARN-Out-of-Scope-result.txt} (100%)
 create mode 100644 Tests/RunCMake/CMP0055/CMP0055-WARN-Out-of-Scope-stderr.txt
 create mode 100644 Tests/RunCMake/CMP0055/CMP0055-WARN-Out-of-Scope.cmake
 copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => 
CMP0055/CMP0055-WARN-Reject-Arguments-result.txt} (100%)
 create mode 100644 
Tests/RunCMake/CMP0055/CMP0055-WARN-Reject-Arguments-stderr.txt
 create mode 100644 Tests/RunCMake/CMP0055/CMP0055-WARN-Reject-Arguments.cmake
 copy Tests/RunCMake/{add_custom_command => CMP0055}/CMakeLists.txt (100%)
 create mode 100644 Tests/RunCMake/CMP0055/RunCMakeTest.cmake


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits

Reply via email to