mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 04:45:58 +01:00
build: move udev dep to backend/
The DRM, libinput and session use udev. They are all hosted under backend/.
This commit is contained in:
parent
f3ba14e491
commit
1928d1ce9f
2 changed files with 3 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
udev = dependency('libudev')
|
||||||
|
wlr_deps += udev
|
||||||
|
|
||||||
wlr_files += files('backend.c')
|
wlr_files += files('backend.c')
|
||||||
|
|
||||||
all_backends = ['drm', 'libinput', 'x11']
|
all_backends = ['drm', 'libinput', 'x11']
|
||||||
|
|
|
@ -128,7 +128,6 @@ drm = dependency('libdrm',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
xkbcommon = dependency('xkbcommon')
|
xkbcommon = dependency('xkbcommon')
|
||||||
udev = dependency('libudev')
|
|
||||||
pixman = dependency('pixman-1')
|
pixman = dependency('pixman-1')
|
||||||
math = cc.find_library('m')
|
math = cc.find_library('m')
|
||||||
rt = cc.find_library('rt')
|
rt = cc.find_library('rt')
|
||||||
|
@ -138,7 +137,6 @@ wlr_deps = [
|
||||||
wayland_server,
|
wayland_server,
|
||||||
drm,
|
drm,
|
||||||
xkbcommon,
|
xkbcommon,
|
||||||
udev,
|
|
||||||
pixman,
|
pixman,
|
||||||
math,
|
math,
|
||||||
rt,
|
rt,
|
||||||
|
|
Loading…
Reference in a new issue