mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-21 14:34:49 +01:00
cmake: Add POSIX threads support
This commit is contained in:
parent
fd72d00ffe
commit
35cffc497d
1 changed files with 6 additions and 0 deletions
|
@ -85,6 +85,12 @@ target_link_libraries(core_interface INTERFACE
|
|||
$<$<CONFIG:Debug>:core_interface_debug>
|
||||
)
|
||||
|
||||
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
||||
find_package(Threads REQUIRED)
|
||||
target_link_libraries(core_base_interface INTERFACE
|
||||
Threads::Threads
|
||||
)
|
||||
|
||||
include(cmake/introspection.cmake)
|
||||
|
||||
# TODO: The `CMAKE_SKIP_BUILD_RPATH` variable setting can be deleted
|
||||
|
|
Loading…
Add table
Reference in a new issue