diff options
author | bunnei <bunneidev@gmail.com> | 2021-07-25 10:43:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 10:43:11 -0700 |
commit | c2aaf5137003868b2375b96ee84e2cb42d5f355e (patch) | |
tree | 1e5160615b48e7a2a0d1da461b6cc1dbbe718bb3 | |
parent | e7c30f33feec924d48caea4ed68a67dd332b0bef (diff) | |
parent | eb61824ea5d5e34475c846ca040a0e33d794a2d2 (diff) |
Merge pull request #6699 from lat9nq/common-threads
common: Publically link to pthreads
-rw-r--r-- | src/common/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index e03fffd8d0..7f22ea97a7 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -231,7 +231,7 @@ endif() create_target_directory_groups(common) -target_link_libraries(common PUBLIC ${Boost_LIBRARIES} fmt::fmt microprofile) +target_link_libraries(common PUBLIC ${Boost_LIBRARIES} fmt::fmt microprofile Threads::Threads) target_link_libraries(common PRIVATE lz4::lz4 xbyak) if (MSVC) target_link_libraries(common PRIVATE zstd::zstd) |