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