[Cmake-commits] CMake branch, master, updated. v2.8.11-258-gbcc29c5

Brad King brad.king at kitware.com
Mon Jun 3 09:57:42 EDT 2013


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  bcc29c56a599baa3e2d8bd1d56e3727911a1c7d7 (commit)
       via  d06db7ebe80636876d9701064b16cec9d3e2e3cb (commit)
       via  b680824a5fdcc54c265c64ce8958f9d80acad70d (commit)
      from  90441b289da6e7bd9f50a970d7adefc7b6be749f (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=bcc29c56a599baa3e2d8bd1d56e3727911a1c7d7
commit bcc29c56a599baa3e2d8bd1d56e3727911a1c7d7
Merge: 90441b2 d06db7e
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Jun 3 09:57:39 2013 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Jun 3 09:57:39 2013 -0400

    Merge topic 'refactor-try_compile-argument-processing'
    
    d06db7e try_compile: Refactor argument processing
    b680824 try_compile: Add test for bad call error cases


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

Summary of changes:
 Source/cmCoreTryCompile.cxx                        |  236 +++++++++-----------
 Tests/RunCMake/CMakeLists.txt                      |    1 +
 .../BadLinkLibraries-result.txt}                   |    0
 .../try_compile/BadLinkLibraries-stderr.txt        |    5 +
 Tests/RunCMake/try_compile/BadLinkLibraries.cmake  |    3 +
 .../{CMP0004 => try_compile}/CMakeLists.txt        |    0
 .../NoArgs-result.txt}                             |    0
 Tests/RunCMake/try_compile/NoArgs-stderr.txt       |    4 +
 Tests/RunCMake/try_compile/NoArgs.cmake            |    1 +
 .../NoCopyFile-result.txt}                         |    0
 Tests/RunCMake/try_compile/NoCopyFile-stderr.txt   |    4 +
 Tests/RunCMake/try_compile/NoCopyFile.cmake        |    2 +
 .../NoCopyFile2-result.txt}                        |    0
 Tests/RunCMake/try_compile/NoCopyFile2-stderr.txt  |    4 +
 Tests/RunCMake/try_compile/NoCopyFile2.cmake       |    2 +
 .../NoOutputVariable-result.txt}                   |    0
 .../try_compile/NoOutputVariable-stderr.txt        |    4 +
 Tests/RunCMake/try_compile/NoOutputVariable.cmake  |    2 +
 .../NoOutputVariable2-result.txt}                  |    0
 .../try_compile/NoOutputVariable2-stderr.txt       |    4 +
 Tests/RunCMake/try_compile/NoOutputVariable2.cmake |    2 +
 .../NonSourceCompileDefinitions-result.txt}        |    0
 .../NonSourceCompileDefinitions-stderr.txt         |    4 +
 .../try_compile/NonSourceCompileDefinitions.cmake  |    2 +
 .../NonSourceCopyFile-result.txt}                  |    0
 .../try_compile/NonSourceCopyFile-stderr.txt       |    4 +
 Tests/RunCMake/try_compile/NonSourceCopyFile.cmake |    2 +
 .../OneArg-result.txt}                             |    0
 Tests/RunCMake/try_compile/OneArg-stderr.txt       |    4 +
 Tests/RunCMake/try_compile/OneArg.cmake            |    1 +
 Tests/RunCMake/try_compile/RunCMakeTest.cmake      |   12 +
 .../TwoArgs-result.txt}                            |    0
 Tests/RunCMake/try_compile/TwoArgs-stderr.txt      |    4 +
 Tests/RunCMake/try_compile/TwoArgs.cmake           |    1 +
 Tests/RunCMake/try_compile/proj/CMakeLists.txt     |    2 +
 .../main.c => RunCMake/try_compile/src.c}          |    0
 36 files changed, 177 insertions(+), 133 deletions(-)
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => try_compile/BadLinkLibraries-result.txt} (100%)
 create mode 100644 Tests/RunCMake/try_compile/BadLinkLibraries-stderr.txt
 create mode 100644 Tests/RunCMake/try_compile/BadLinkLibraries.cmake
 copy Tests/RunCMake/{CMP0004 => try_compile}/CMakeLists.txt (100%)
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => try_compile/NoArgs-result.txt} (100%)
 create mode 100644 Tests/RunCMake/try_compile/NoArgs-stderr.txt
 create mode 100644 Tests/RunCMake/try_compile/NoArgs.cmake
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => try_compile/NoCopyFile-result.txt} (100%)
 create mode 100644 Tests/RunCMake/try_compile/NoCopyFile-stderr.txt
 create mode 100644 Tests/RunCMake/try_compile/NoCopyFile.cmake
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => try_compile/NoCopyFile2-result.txt} (100%)
 create mode 100644 Tests/RunCMake/try_compile/NoCopyFile2-stderr.txt
 create mode 100644 Tests/RunCMake/try_compile/NoCopyFile2.cmake
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => try_compile/NoOutputVariable-result.txt} (100%)
 create mode 100644 Tests/RunCMake/try_compile/NoOutputVariable-stderr.txt
 create mode 100644 Tests/RunCMake/try_compile/NoOutputVariable.cmake
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => try_compile/NoOutputVariable2-result.txt} (100%)
 create mode 100644 Tests/RunCMake/try_compile/NoOutputVariable2-stderr.txt
 create mode 100644 Tests/RunCMake/try_compile/NoOutputVariable2.cmake
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => try_compile/NonSourceCompileDefinitions-result.txt} (100%)
 create mode 100644 Tests/RunCMake/try_compile/NonSourceCompileDefinitions-stderr.txt
 create mode 100644 Tests/RunCMake/try_compile/NonSourceCompileDefinitions.cmake
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => try_compile/NonSourceCopyFile-result.txt} (100%)
 create mode 100644 Tests/RunCMake/try_compile/NonSourceCopyFile-stderr.txt
 create mode 100644 Tests/RunCMake/try_compile/NonSourceCopyFile.cmake
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => try_compile/OneArg-result.txt} (100%)
 create mode 100644 Tests/RunCMake/try_compile/OneArg-stderr.txt
 create mode 100644 Tests/RunCMake/try_compile/OneArg.cmake
 create mode 100644 Tests/RunCMake/try_compile/RunCMakeTest.cmake
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => try_compile/TwoArgs-result.txt} (100%)
 create mode 100644 Tests/RunCMake/try_compile/TwoArgs-stderr.txt
 create mode 100644 Tests/RunCMake/try_compile/TwoArgs.cmake
 create mode 100644 Tests/RunCMake/try_compile/proj/CMakeLists.txt
 copy Tests/{CMakeOnly/LinkInterfaceLoop/main.c => RunCMake/try_compile/src.c} (100%)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list