aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meson.build1
-rw-r--r--sway/meson.build1
2 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 46352da5..d23300be 100644
--- a/meson.build
+++ b/meson.build
@@ -70,6 +70,7 @@ fish_comp = dependency('fish', required: false)
70math = cc.find_library('m') 70math = cc.find_library('m')
71rt = cc.find_library('rt') 71rt = cc.find_library('rt')
72xcb_icccm = dependency('xcb-icccm', required: get_option('xwayland')) 72xcb_icccm = dependency('xcb-icccm', required: get_option('xwayland'))
73threads = dependency('threads') # for pthread_setschedparam
73 74
74wlroots_features = { 75wlroots_features = {
75 'xwayland': false, 76 'xwayland': false,
diff --git a/sway/meson.build b/sway/meson.build
index 5dd9cad2..47c59dd5 100644
--- a/sway/meson.build
+++ b/sway/meson.build
@@ -220,6 +220,7 @@ sway_deps = [
220 glesv2, 220 glesv2,
221 pixman, 221 pixman,
222 server_protos, 222 server_protos,
223 threads,
223 wayland_server, 224 wayland_server,
224 wlroots, 225 wlroots,
225 xkbcommon, 226 xkbcommon,