build: add missing libdrm dependency

This commit is contained in:
obayemi 2020-03-23 16:49:36 +01:00 committed by GitHub
parent bba347be4c
commit dfa0ac7040
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,7 @@ rt = cc.find_library('rt')
pipewire = dependency('libpipewire-0.3', version: '>= 0.2.9')
wayland_client = dependency('wayland-client')
wayland_protos = dependency('wayland-protocols', version: '>=1.14')
drm = dependency('libdrm').partial_dependency(includes: true)
logind = dependency('libsystemd', required: false)
if logind.found()
@ -55,7 +56,8 @@ executable(
wlr_protos,
logind,
pipewire,
rt
rt,
drm
],
include_directories: [inc],
install: true,