mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Add missing dependencies
This commit is contained in:
parent
71cba94e73
commit
168e26489a
4 changed files with 8 additions and 6 deletions
|
@ -28,14 +28,15 @@ backend_files = files(
|
||||||
)
|
)
|
||||||
|
|
||||||
backend_deps = [
|
backend_deps = [
|
||||||
wayland_server,
|
drm,
|
||||||
egl,
|
egl,
|
||||||
gbm,
|
gbm,
|
||||||
libinput,
|
libinput,
|
||||||
wlr_render,
|
|
||||||
wlr_protos,
|
|
||||||
drm,
|
|
||||||
pixman,
|
pixman,
|
||||||
|
xkbcommon,
|
||||||
|
wayland_server,
|
||||||
|
wlr_protos,
|
||||||
|
wlr_render,
|
||||||
]
|
]
|
||||||
|
|
||||||
if host_machine.system().startswith('freebsd')
|
if host_machine.system().startswith('freebsd')
|
||||||
|
|
|
@ -22,7 +22,7 @@ lib_wlr_render = static_library(
|
||||||
glapi[0],
|
glapi[0],
|
||||||
glapi[1],
|
glapi[1],
|
||||||
include_directories: wlr_inc,
|
include_directories: wlr_inc,
|
||||||
dependencies: [glesv2, egl, pixman],
|
dependencies: [egl, glesv2, pixman, wayland_server],
|
||||||
)
|
)
|
||||||
|
|
||||||
wlr_render = declare_dependency(
|
wlr_render = declare_dependency(
|
||||||
|
|
|
@ -28,5 +28,5 @@ lib_wlr_types = static_library(
|
||||||
'wlr_xdg_shell_v6.c',
|
'wlr_xdg_shell_v6.c',
|
||||||
),
|
),
|
||||||
include_directories: wlr_inc,
|
include_directories: wlr_inc,
|
||||||
dependencies: [wayland_server, pixman, wlr_protos],
|
dependencies: [pixman, xkbcommon, wayland_server, wlr_protos],
|
||||||
)
|
)
|
||||||
|
|
|
@ -15,6 +15,7 @@ lib_wlr_xwayland = static_library(
|
||||||
xcb_image,
|
xcb_image,
|
||||||
xcb_render,
|
xcb_render,
|
||||||
xcb_icccm,
|
xcb_icccm,
|
||||||
|
xkbcommon,
|
||||||
pixman,
|
pixman,
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue