Add missing dependencies

This commit is contained in:
Rodrigo Lourenço 2018-02-14 18:27:31 +00:00 committed by Rodrigo Lourenço
parent 71cba94e73
commit 168e26489a
4 changed files with 8 additions and 6 deletions

View File

@ -28,14 +28,15 @@ backend_files = files(
)
backend_deps = [
wayland_server,
drm,
egl,
gbm,
libinput,
wlr_render,
wlr_protos,
drm,
pixman,
xkbcommon,
wayland_server,
wlr_protos,
wlr_render,
]
if host_machine.system().startswith('freebsd')

View File

@ -22,7 +22,7 @@ lib_wlr_render = static_library(
glapi[0],
glapi[1],
include_directories: wlr_inc,
dependencies: [glesv2, egl, pixman],
dependencies: [egl, glesv2, pixman, wayland_server],
)
wlr_render = declare_dependency(

View File

@ -28,5 +28,5 @@ lib_wlr_types = static_library(
'wlr_xdg_shell_v6.c',
),
include_directories: wlr_inc,
dependencies: [wayland_server, pixman, wlr_protos],
dependencies: [pixman, xkbcommon, wayland_server, wlr_protos],
)

View File

@ -15,6 +15,7 @@ lib_wlr_xwayland = static_library(
xcb_image,
xcb_render,
xcb_icccm,
xkbcommon,
pixman,
],
)