aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meson.build2
-rw-r--r--sway/meson.build1
2 files changed, 3 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 9177ca33..19cb5130 100644
--- a/meson.build
+++ b/meson.build
@@ -52,6 +52,8 @@ glesv2 = dependency('glesv2')
libevdev = dependency('libevdev')
libinput = dependency('libinput', version: '>=1.6.0')
xcb = dependency('xcb', required: get_option('xwayland'))
+drm_full = dependency('libdrm') # only needed for drm_fourcc.h
+drm = drm_full.partial_dependency(compile_args: true, includes: true)
bash_comp = dependency('bash-completion', required: false)
fish_comp = dependency('fish', required: false)
math = cc.find_library('m')
diff --git a/sway/meson.build b/sway/meson.build
index 6e138101..f163ee90 100644
--- a/sway/meson.build
+++ b/sway/meson.build
@@ -204,6 +204,7 @@ sway_sources = files(
sway_deps = [
cairo,
+ drm,
jsonc,
libevdev,
libinput,