mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-22 22:35:59 +01:00
build: add missing libdrm dependency
This commit is contained in:
parent
bba347be4c
commit
dfa0ac7040
1 changed files with 3 additions and 1 deletions
|
@ -26,6 +26,7 @@ rt = cc.find_library('rt')
|
||||||
pipewire = dependency('libpipewire-0.3', version: '>= 0.2.9')
|
pipewire = dependency('libpipewire-0.3', version: '>= 0.2.9')
|
||||||
wayland_client = dependency('wayland-client')
|
wayland_client = dependency('wayland-client')
|
||||||
wayland_protos = dependency('wayland-protocols', version: '>=1.14')
|
wayland_protos = dependency('wayland-protocols', version: '>=1.14')
|
||||||
|
drm = dependency('libdrm').partial_dependency(includes: true)
|
||||||
|
|
||||||
logind = dependency('libsystemd', required: false)
|
logind = dependency('libsystemd', required: false)
|
||||||
if logind.found()
|
if logind.found()
|
||||||
|
@ -55,7 +56,8 @@ executable(
|
||||||
wlr_protos,
|
wlr_protos,
|
||||||
logind,
|
logind,
|
||||||
pipewire,
|
pipewire,
|
||||||
rt
|
rt,
|
||||||
|
drm
|
||||||
],
|
],
|
||||||
include_directories: [inc],
|
include_directories: [inc],
|
||||||
install: true,
|
install: true,
|
||||||
|
|
Loading…
Reference in a new issue