Files
CMake/Tests/FindThreads/C-only/CMakeLists.txt
T
Brad King bd7b2293aa Tests: Bump CMake minimum required version in find-module tests to 3.5
CMake 3.27 deprecates compatibility with CMake < 3.5.
Update find module tests to avoid the deprecation warning.
2023-03-08 15:41:43 -05:00

10 lines
267 B
CMake

cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
project(FindThreads_C-only C)
find_package(Threads REQUIRED)
if (NOT WIN32)
add_executable(thr ${CMAKE_CURRENT_SOURCE_DIR}/../../../Modules/CheckForPthreads.c)
target_link_libraries(thr Threads::Threads)
endif ()