aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-12-07 16:20:20 +0100
committerSimon Ser <contact@emersion.fr>2021-12-07 16:20:20 +0100
commit90e9d327ddc64b1b80c0e3b286cfbb9675b619d0 (patch)
treeb2fa4cb89abb92c0a2eaa1fc34e711689a21cbda
parent83bdb3ad0759a8043f0010e4bfd18f03b88f1e1e (diff)
examples: remove unnecessary wlroots deps for clients
These clients don't need wlroots.
-rw-r--r--examples/meson.build6
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/meson.build b/examples/meson.build
index 3189f0b4..bb798f25 100644
--- a/examples/meson.build
+++ b/examples/meson.build
@@ -103,7 +103,7 @@ clients = {
},
'output-power-management': {
'src': 'output-power-management.c',
- 'dep': [wayland_client, wlroots],
+ 'dep': [wayland_client],
'proto': ['wlr-output-power-management-unstable-v1'],
},
'pointer-constraints': {
@@ -174,12 +174,10 @@ clients = {
},
'foreign-toplevel': {
'src': 'foreign-toplevel.c',
- 'dep': [wlroots],
'proto': ['wlr-foreign-toplevel-management-unstable-v1'],
},
'virtual-pointer': {
'src': 'virtual-pointer.c',
- 'dep': wlroots,
'proto': ['wlr-virtual-pointer-unstable-v1'],
},
'input-method-keyboard-grab': {
@@ -216,7 +214,7 @@ foreach name, info : clients
executable(
name,
[info.get('src'), extra_src],
- dependencies: [wayland_client, info.get('dep')],
+ dependencies: [wayland_client, info.get('dep', [])],
build_by_default: get_option('examples'),
)
endforeach