aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-12-07 16:11:29 +0100
committerSimon Ser <contact@emersion.fr>2021-12-07 16:11:29 +0100
commitad28490cf496e0ddae991fc553f24e63efe72a34 (patch)
tree54a9fbc2c04d5a1cda52744204a09155f40fb406 /meson.build
parentc50c4fc5cc7fc4c1e8e7ecd5d21bb821d0f7cfb6 (diff)
build: move wayland-client dep to backend/wayland/
wayland-client isn't really used by wlroots core, so let's move the dep to where it's needed in the Wayland backend.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 0 insertions, 5 deletions
diff --git a/meson.build b/meson.build
index 2f296949..2e72e445 100644
--- a/meson.build
+++ b/meson.build
@@ -103,10 +103,6 @@ wayland_server = dependency('wayland-server',
fallback: ['wayland', 'wayland_server_dep'],
default_options: wayland_project_options,
)
-wayland_client = dependency('wayland-client',
- fallback: ['wayland', 'wayland_client_dep'],
- default_options: wayland_project_options,
-)
drm = dependency('libdrm', version: '>=2.4.105')
gbm = dependency('gbm', version: '>=17.1.0')
@@ -119,7 +115,6 @@ rt = cc.find_library('rt')
wlr_files = []
wlr_deps = [
wayland_server,
- wayland_client,
drm,
gbm,
xkbcommon,