[Cmake-commits] CMake branch, next, updated. v3.3.2-3176-g6930abc
Rolf Eike Beer
eike at sf-mail.de
Mon Sep 21 14:33:00 EDT 2015
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 6930abc0d88ae587a717b9343780ac32499da4c1 (commit)
via 80963782a3726472dacfc82f357d5ceccca3b543 (commit)
from 8db1b40ef504bc2ac102877bc767d608891d16f4 (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=6930abc0d88ae587a717b9343780ac32499da4c1
commit 6930abc0d88ae587a717b9343780ac32499da4c1
Merge: 8db1b40 8096378
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Mon Sep 21 14:32:59 2015 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Sep 21 14:32:59 2015 -0400
Merge topic 'Threads-CXX' into next
80963782 FindThreads: add simple testcase
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=80963782a3726472dacfc82f357d5ceccca3b543
commit 80963782a3726472dacfc82f357d5ceccca3b543
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Mon Sep 21 17:57:33 2015 +0200
Commit: Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Mon Sep 21 20:32:47 2015 +0200
FindThreads: add simple testcase
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt
index fff04ce..dc65a2e 100644
--- a/Tests/CMakeLists.txt
+++ b/Tests/CMakeLists.txt
@@ -1365,6 +1365,8 @@ ${CMake_BINARY_DIR}/bin/cmake -DDIR=dev -P ${CMake_SOURCE_DIR}/Utilities/Release
add_subdirectory(FindOpenSSL)
endif()
+ add_subdirectory(FindThreads)
+
# Matlab module
if(CMake_TEST_FindMatlab)
ADD_TEST_MACRO(FindMatlab.basic_checks ${CMAKE_CTEST_COMMAND} -C $<CONFIGURATION>)
diff --git a/Tests/FindThreads/C-only/CMakeLists.txt b/Tests/FindThreads/C-only/CMakeLists.txt
new file mode 100644
index 0000000..ffbb8b1
--- /dev/null
+++ b/Tests/FindThreads/C-only/CMakeLists.txt
@@ -0,0 +1,8 @@
+cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
+project(FindThreads_C-only C)
+
+set(CMAKE_THREAD_PREFER_PTHREAD On)
+find_package(Threads REQUIRED)
+
+add_executable(thr ${CMAKE_CURRENT_SOURCE_DIR}/../../../Modules/CheckForPthreads.c)
+target_link_libraries(thr Threads::Threads)
diff --git a/Tests/FindThreads/CMakeLists.txt b/Tests/FindThreads/CMakeLists.txt
new file mode 100644
index 0000000..36518a3
--- /dev/null
+++ b/Tests/FindThreads/CMakeLists.txt
@@ -0,0 +1,9 @@
+add_test(NAME FindThreads.C-only COMMAND ${CMAKE_CTEST_COMMAND}
+ --build-and-test
+ "${CMake_SOURCE_DIR}/Tests/FindThreads/C-only"
+ "${CMake_BINARY_DIR}/Tests/FindThreads/C-only"
+ ${build_generator_args}
+ --build-project FindThreads_C-only
+ --build-options ${build_options}
+ --test-command ${CMAKE_CTEST_COMMAND} -V
+ )
-----------------------------------------------------------------------
Summary of changes:
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list