2018-08-24 19:35:02 +12:00
|
|
|
x11_libs = []
|
|
|
|
x11_required = [
|
2018-11-11 12:30:37 +13:00
|
|
|
'xcb',
|
2020-11-18 19:21:03 +01:00
|
|
|
'xcb-dri3',
|
|
|
|
'xcb-present',
|
2021-01-20 20:06:28 -05:00
|
|
|
'xcb-render',
|
|
|
|
'xcb-renderutil',
|
2021-04-19 12:52:31 -06:00
|
|
|
'xcb-shm',
|
2019-11-19 17:37:43 +13:00
|
|
|
'xcb-xfixes',
|
2020-11-18 19:21:03 +01:00
|
|
|
'xcb-xinput',
|
2018-08-24 19:35:02 +12:00
|
|
|
]
|
|
|
|
|
2021-03-26 23:28:37 +08:00
|
|
|
msg = ['Required for X11 backend support.']
|
|
|
|
if 'x11' in backends
|
|
|
|
msg += 'Install "@0@" or disable the X11 backend.'
|
2019-11-22 20:11:15 +13:00
|
|
|
endif
|
|
|
|
|
2018-08-24 19:35:02 +12:00
|
|
|
foreach lib : x11_required
|
2019-11-22 20:11:15 +13:00
|
|
|
dep = dependency(lib,
|
2021-03-26 23:28:37 +08:00
|
|
|
required: 'x11' in backends,
|
2019-11-22 20:11:15 +13:00
|
|
|
not_found_message: '\n'.join(msg).format(lib),
|
|
|
|
)
|
2018-08-24 19:35:02 +12:00
|
|
|
if not dep.found()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
|
|
|
x11_libs += dep
|
|
|
|
endforeach
|
|
|
|
|
2019-11-22 20:11:15 +13:00
|
|
|
wlr_files += files(
|
|
|
|
'backend.c',
|
|
|
|
'input_device.c',
|
|
|
|
'output.c',
|
2018-08-24 19:35:02 +12:00
|
|
|
)
|
2019-11-22 20:11:15 +13:00
|
|
|
wlr_deps += x11_libs
|
2021-02-08 15:16:10 +01:00
|
|
|
features += { 'x11-backend': true }
|