mirror of
https://github.com/labwc/labwc.git
synced 2026-02-23 01:40:18 -05:00
meson.build: add drm dependency for drm_fourcc.h
This commit is contained in:
parent
0ca3eb8f79
commit
1fb9d5eaa4
1 changed files with 14 additions and 2 deletions
16
meson.build
16
meson.build
|
|
@ -48,6 +48,8 @@ wayland_server = dependency('wayland-server')
|
||||||
wayland_protos = dependency('wayland-protocols')
|
wayland_protos = dependency('wayland-protocols')
|
||||||
xkbcommon = dependency('xkbcommon')
|
xkbcommon = dependency('xkbcommon')
|
||||||
xcb = dependency('xcb', required: get_option('xwayland'))
|
xcb = dependency('xcb', required: get_option('xwayland'))
|
||||||
|
drm_full = dependency('libdrm')
|
||||||
|
drm = drm_full.partial_dependency(compile_args: true, includes: true)
|
||||||
xml2 = dependency('libxml-2.0')
|
xml2 = dependency('libxml-2.0')
|
||||||
glib = dependency('glib-2.0')
|
glib = dependency('glib-2.0')
|
||||||
cairo = dependency('cairo')
|
cairo = dependency('cairo')
|
||||||
|
|
@ -68,8 +70,18 @@ labwc_inc = include_directories('include')
|
||||||
subdir('protocols')
|
subdir('protocols')
|
||||||
|
|
||||||
labwc_deps = [
|
labwc_deps = [
|
||||||
server_protos, wayland_server, wlroots, xkbcommon, xml2, glib,
|
server_protos,
|
||||||
cairo, pangocairo, input, pixman, math,
|
wayland_server,
|
||||||
|
wlroots,
|
||||||
|
xkbcommon,
|
||||||
|
xml2,
|
||||||
|
glib,
|
||||||
|
cairo,
|
||||||
|
drm,
|
||||||
|
pangocairo,
|
||||||
|
input,
|
||||||
|
pixman,
|
||||||
|
math,
|
||||||
]
|
]
|
||||||
|
|
||||||
subdir('include')
|
subdir('include')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue