mirror of
https://github.com/labwc/labwc.git
synced 2026-04-03 07:15:34 -04:00
meson.build: make libinput and libdrm depend on wlroots feature flags
This commit is contained in:
parent
8c6faa010f
commit
3df8fcda3a
1 changed files with 2 additions and 2 deletions
|
|
@ -65,13 +65,13 @@ xkbcommon = dependency('xkbcommon')
|
|||
xcb = dependency('xcb', required: get_option('xwayland'))
|
||||
xcb_ewmh = dependency('xcb-ewmh', required: get_option('xwayland'))
|
||||
xcb_icccm = dependency('xcb-icccm', required: get_option('xwayland'))
|
||||
drm_full = dependency('libdrm')
|
||||
drm_full = dependency('libdrm', required: wlroots.get_variable('have_drm_backend') == 'true')
|
||||
drm = drm_full.partial_dependency(compile_args: true, includes: true)
|
||||
xml2 = dependency('libxml-2.0')
|
||||
glib = dependency('glib-2.0')
|
||||
cairo = dependency('cairo')
|
||||
pangocairo = dependency('pangocairo')
|
||||
input = dependency('libinput', version: '>=1.26')
|
||||
input = dependency('libinput', version: '>=1.26', required: wlroots.get_variable('have_libinput_backend') == 'true')
|
||||
pixman = dependency('pixman-1')
|
||||
math = cc.find_library('m')
|
||||
png = dependency('libpng')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue