[Cmake-commits] CMake branch, next, updated. v2.8.11-2077-gc52fdca
Stephen Kelly
steveire at gmail.com
Sun May 19 02:53:21 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 c52fdca58898269ac82aa82dc331936056715e7e (commit)
via 044ffe22bd04051c68447035cbe5ceae5be64e65 (commit)
from b2c2fc2e695243280b0e75d1c8e25a7a3e51d88d (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=c52fdca58898269ac82aa82dc331936056715e7e
commit c52fdca58898269ac82aa82dc331936056715e7e
Merge: b2c2fc2 044ffe2
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun May 19 02:53:19 2013 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun May 19 02:53:19 2013 -0400
Merge topic 'generate_export_header-fixes' into next
044ffe2 Exclude some systems which don't seem to work with C only.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=044ffe22bd04051c68447035cbe5ceae5be64e65
commit 044ffe22bd04051c68447035cbe5ceae5be64e65
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun May 19 08:48:00 2013 +0200
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Sun May 19 08:48:00 2013 +0200
Exclude some systems which don't seem to work with C only.
diff --git a/Tests/Module/GenerateExportHeader/lib_shared_and_statictest/CMakeLists.txt b/Tests/Module/GenerateExportHeader/lib_shared_and_statictest/CMakeLists.txt
index 20e8225..d14195c 100644
--- a/Tests/Module/GenerateExportHeader/lib_shared_and_statictest/CMakeLists.txt
+++ b/Tests/Module/GenerateExportHeader/lib_shared_and_statictest/CMakeLists.txt
@@ -38,5 +38,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:
.../lib_shared_and_statictest/CMakeLists.txt | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list