[Cmake-commits] CMake branch, master, updated. v3.7.2-1171-g4f37987

Brad King brad.king at kitware.com
Wed Jan 25 08:41:20 EST 2017


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  4f37987e3fd72b957d45e741e6ee70ccf42b167d (commit)
       via  0618ddf6b1da3a886f12b6ad2b19da49b2f87e28 (commit)
      from  9006ec1d9b7d738f690c32d673443b8851887f16 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=4f37987e3fd72b957d45e741e6ee70ccf42b167d
commit 4f37987e3fd72b957d45e741e6ee70ccf42b167d
Merge: 9006ec1 0618ddf
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Jan 25 08:41:18 2017 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Jan 25 08:41:18 2017 -0500

    Merge topic 'lang_lint'
    
    0618ddf6 Add properties to run the cpplint style checker with the compiler


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

Summary of changes:
 Auxiliary/vim/syntax/cmake.vim                     |    4 +-
 Help/manual/cmake-properties.7.rst                 |    1 +
 Help/manual/cmake-variables.7.rst                  |    1 +
 Help/prop_tgt/LANG_CPPLINT.rst                     |   13 ++++++
 Help/release/dev/add-LANG_CPPLINT.rst              |    8 ++++
 Help/variable/CMAKE_LANG_CPPLINT.rst               |    6 +++
 Source/cmMakefileTargetGenerator.cxx               |   10 ++++-
 Source/cmNinjaTargetGenerator.cxx                  |   10 ++++-
 Source/cmTarget.cxx                                |    2 +
 Source/cmcmd.cxx                                   |   42 +++++++++++++++++---
 Tests/RunCMake/CMakeLists.txt                      |    2 +
 .../CommandLine/E___run_iwyu-no-iwyu-stderr.txt    |    2 +-
 Tests/RunCMake/Cpplint/C-Build-stdout.txt          |    1 +
 .../C-error-Build-result.txt}                      |    0
 Tests/RunCMake/Cpplint/C-error-Build-stdout.txt    |    1 +
 .../C-error-launch-Build-result.txt}               |    0
 .../Cpplint/C-error-launch-Build-stdout.txt        |    1 +
 Tests/RunCMake/Cpplint/C-error-launch.cmake        |    3 ++
 Tests/RunCMake/Cpplint/C-error.cmake               |    3 ++
 Tests/RunCMake/Cpplint/C-launch-Build-stdout.txt   |    1 +
 .../RunCMake/{ClangTidy => Cpplint}/C-launch.cmake |    0
 Tests/RunCMake/Cpplint/C.cmake                     |    3 ++
 .../{execute_process => Cpplint}/CMakeLists.txt    |    0
 Tests/RunCMake/Cpplint/CXX-Build-stdout.txt        |    1 +
 .../CXX-error-Build-result.txt}                    |    0
 Tests/RunCMake/Cpplint/CXX-error-Build-stdout.txt  |    1 +
 .../CXX-error-launch-Build-result.txt}             |    0
 .../Cpplint/CXX-error-launch-Build-stdout.txt      |    1 +
 Tests/RunCMake/Cpplint/CXX-error-launch.cmake      |    3 ++
 Tests/RunCMake/Cpplint/CXX-error.cmake             |    3 ++
 Tests/RunCMake/Cpplint/CXX-launch-Build-stdout.txt |    1 +
 .../{ClangTidy => Cpplint}/CXX-launch.cmake        |    0
 Tests/RunCMake/Cpplint/CXX.cmake                   |    3 ++
 Tests/RunCMake/Cpplint/RunCMakeTest.cmake          |   26 ++++++++++++
 .../LinkInterfaceLoop => RunCMake/Cpplint}/main.c  |    0
 Tests/RunCMake/{ClangTidy => Cpplint}/main.cxx     |    0
 Tests/RunCMake/pseudo_cpplint.c                    |   21 ++++++++++
 37 files changed, 164 insertions(+), 10 deletions(-)
 create mode 100644 Help/prop_tgt/LANG_CPPLINT.rst
 create mode 100644 Help/release/dev/add-LANG_CPPLINT.rst
 create mode 100644 Help/variable/CMAKE_LANG_CPPLINT.rst
 create mode 100644 Tests/RunCMake/Cpplint/C-Build-stdout.txt
 copy Tests/RunCMake/{CMP0060/CMP0060-OLD-Build-result.txt => Cpplint/C-error-Build-result.txt} (100%)
 create mode 100644 Tests/RunCMake/Cpplint/C-error-Build-stdout.txt
 copy Tests/RunCMake/{CMP0060/CMP0060-OLD-Build-result.txt => Cpplint/C-error-launch-Build-result.txt} (100%)
 create mode 100644 Tests/RunCMake/Cpplint/C-error-launch-Build-stdout.txt
 create mode 100644 Tests/RunCMake/Cpplint/C-error-launch.cmake
 create mode 100644 Tests/RunCMake/Cpplint/C-error.cmake
 create mode 100644 Tests/RunCMake/Cpplint/C-launch-Build-stdout.txt
 copy Tests/RunCMake/{ClangTidy => Cpplint}/C-launch.cmake (100%)
 create mode 100644 Tests/RunCMake/Cpplint/C.cmake
 copy Tests/RunCMake/{execute_process => Cpplint}/CMakeLists.txt (100%)
 create mode 100644 Tests/RunCMake/Cpplint/CXX-Build-stdout.txt
 copy Tests/RunCMake/{CMP0060/CMP0060-OLD-Build-result.txt => Cpplint/CXX-error-Build-result.txt} (100%)
 create mode 100644 Tests/RunCMake/Cpplint/CXX-error-Build-stdout.txt
 copy Tests/RunCMake/{CMP0060/CMP0060-OLD-Build-result.txt => Cpplint/CXX-error-launch-Build-result.txt} (100%)
 create mode 100644 Tests/RunCMake/Cpplint/CXX-error-launch-Build-stdout.txt
 create mode 100644 Tests/RunCMake/Cpplint/CXX-error-launch.cmake
 create mode 100644 Tests/RunCMake/Cpplint/CXX-error.cmake
 create mode 100644 Tests/RunCMake/Cpplint/CXX-launch-Build-stdout.txt
 copy Tests/RunCMake/{ClangTidy => Cpplint}/CXX-launch.cmake (100%)
 create mode 100644 Tests/RunCMake/Cpplint/CXX.cmake
 create mode 100644 Tests/RunCMake/Cpplint/RunCMakeTest.cmake
 copy Tests/{CMakeOnly/LinkInterfaceLoop => RunCMake/Cpplint}/main.c (100%)
 copy Tests/RunCMake/{ClangTidy => Cpplint}/main.cxx (100%)
 create mode 100644 Tests/RunCMake/pseudo_cpplint.c


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list