lib/meson.build: explicitly add thread_dep

For many setups (local, CI), things work fine without this, but apparently not
for all users. So, add thread_dep explicitly.

Fixes: #2266.
This commit is contained in:
Dirk-Jan C. Binnema 2022-05-29 10:51:03 +03:00
parent cf0f72e4a4
commit 5df56896fb
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ lib_mu=static_library(
lib_mu_dep = declare_dependency(
link_with: lib_mu,
dependencies: [ lib_mu_message_dep ],
dependencies: [ lib_mu_message_dep, thread_dep ],
include_directories:
include_directories(['.', '..']))