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.
This commit is contained in:
Simon Ser 2021-12-07 16:11:29 +01:00
parent c50c4fc5cc
commit ad28490cf4
3 changed files with 7 additions and 5 deletions

View file

@ -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,