cmake/Tests/FindThreads/C-only/CMakeLists.txt

10 lines
267 B
CMake
Raw Normal View History

2023-07-02 19:51:09 +02:00
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
2015-11-17 17:22:37 +01:00
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 ()