From: Dylan Baker Date: Mon, 21 Oct 2019 19:51:13 +0000 (-0700) Subject: meson: gtest needs pthreads X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d1767362aabc97857e633c20e4330deaf2b56eda;p=mesa.git meson: gtest needs pthreads Reviewed-by: Brian Paul --- diff --git a/src/gtest/meson.build b/src/gtest/meson.build index 23c21423d00..116fd6b10de 100644 --- a/src/gtest/meson.build +++ b/src/gtest/meson.build @@ -29,4 +29,5 @@ libgtest = static_library( idep_gtest = declare_dependency( link_with : libgtest, include_directories : include_directories('include', is_system : true), + dependencies : [dep_thread], )