[Cmake-commits] CMake branch, next, updated. v2.8.11-2075-gb2c2fc2

Stephen Kelly steveire at gmail.com
Sat May 18 05:06:04 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, next has been updated
       via  b2c2fc2e695243280b0e75d1c8e25a7a3e51d88d (commit)
       via  20e820b04100f3a257f580a9b31f94c740c65e60 (commit)
      from  3833b32a920a60599d8953f292a7d23de0ec5a9d (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=b2c2fc2e695243280b0e75d1c8e25a7a3e51d88d
commit b2c2fc2e695243280b0e75d1c8e25a7a3e51d88d
Merge: 3833b32 20e820b
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sat May 18 05:06:02 2013 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sat May 18 05:06:02 2013 -0400

    Merge topic 'generate_export_header-fixes' into next
    
    20e820b Exclude some systems which don't seem to work with C only.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=20e820b04100f3a257f580a9b31f94c740c65e60
commit 20e820b04100f3a257f580a9b31f94c740c65e60
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sat May 18 11:04:22 2013 +0200
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Sat May 18 11:04:22 2013 +0200

    Exclude some systems which don't seem to work with C only.

diff --git a/Tests/Module/GenerateExportHeader/libsharedtest/CMakeLists.txt b/Tests/Module/GenerateExportHeader/libsharedtest/CMakeLists.txt
index 158a423..e6969ae 100644
--- a/Tests/Module/GenerateExportHeader/libsharedtest/CMakeLists.txt
+++ b/Tests/Module/GenerateExportHeader/libsharedtest/CMakeLists.txt
@@ -52,5 +52,7 @@ endmacro()
 
 run_tests("")
 run_tests("CXX")
-run_tests("C")
+if(NOT "${CMAKE_CXX_COMPILER_ID}" MATCHES XL AND NOT "${CMAKE_GENERATOR}" MATCHES "Visual Studio 6")
+    run_tests("C")
+endif()
 run_tests("C CXX")

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

Summary of changes:
 .../libsharedtest/CMakeLists.txt                   |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list