Merge pull request #515 from primeos/meson-backend-fix

Add libdrm as dependency for wlr_backend
This commit is contained in:
emersion 2017-12-23 23:25:02 +01:00 committed by GitHub
commit e04d350113
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -45,5 +45,5 @@ lib_wlr_backend = static_library(
'wlr_backend',
backend_files,
include_directories: wlr_inc,
dependencies: [wayland_server, egl, gbm, libinput, systemd, elogind, wlr_render, wlr_protos],
dependencies: [wayland_server, egl, gbm, libinput, systemd, elogind, wlr_render, wlr_protos, drm],
)