Respuestas:
@Manuel estaba a medio camino allí. También puede agregar la opción del compilador, así:
Si tiene CMake 3.1.0+, esto se vuelve aún más fácil :
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
target_link_libraries(my_app PRIVATE Threads::Threads)
Si está utilizando CMake 2.8.12+, puede simplificar esto para:
find_package(Threads REQUIRED)
if(THREADS_HAVE_PTHREAD_ARG)
target_compile_options(my_app PUBLIC "-pthread")
endif()
if(CMAKE_THREAD_LIBS_INIT)
target_link_libraries(my_app "${CMAKE_THREAD_LIBS_INIT}")
endif()
Las versiones anteriores de CMake pueden requerir:
find_package(Threads REQUIRED)
if(THREADS_HAVE_PTHREAD_ARG)
set_property(TARGET my_app PROPERTY COMPILE_OPTIONS "-pthread")
set_property(TARGET my_app PROPERTY INTERFACE_COMPILE_OPTIONS "-pthread")
endif()
if(CMAKE_THREAD_LIBS_INIT)
target_link_libraries(my_app "${CMAKE_THREAD_LIBS_INIT}")
endif()
Si desea utilizar uno de los dos primeros métodos con CMake 3.1+, también lo necesitará set(THREADS_PREFER_PTHREAD_FLAG ON)
.
NOT CMAKE_HAVE_THREADS_LIBRARY
), por ejemplo, en Ubuntu 15.04 :(
/usr/share/cmake-2.8/Modules/FindThreads.cmake
(por ejemplo, vea aquí apt-browse.org/browse/ubuntu/trusty/main/all/cmake-data/… ) básicamente, THREADS_HAVE_PTHREAD_ARG
sólo se establece si las otras variaciones de la bandera no se encontraron (es decir. -lpthread
, -lpthread
, o -lthread
)
Lo siguiente debe estar limpio (usando find_package
) y funcionar (se llama al módulo de búsqueda FindThreads
):
cmake_minimum_required (VERSION 2.6)
find_package (Threads)
add_executable (myapp main.cpp ...)
target_link_libraries (myapp ${CMAKE_THREAD_LIBS_INIT})
Aquí está la respuesta correcta:
ADD_EXECUTABLE(your_executable ${source_files})
TARGET_LINK_LIBRARIES( your_executable
pthread
)
equivalente a
-lpthread
target_link_libraries(target "$<$<CXX_COMPILER_ID:GNU>:-pthread>$<$<CXX_COMPILER_ID:Clang>:-pthreads>")
que esté al menos basado en objetivos y que no falle en Windows y otras plataformas.