2022-11-23 16:04:43 +01:00
|
|
|
if not features['session']
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2022-06-26 23:11:47 +02:00
|
|
|
hwdata = dependency('hwdata', required: false, native: true)
|
|
|
|
if hwdata.found()
|
|
|
|
hwdata_dir = hwdata.get_variable(pkgconfig: 'pkgdatadir')
|
|
|
|
pnp_ids = files(hwdata_dir / 'pnp.ids')
|
|
|
|
else
|
|
|
|
pnp_ids = files('/usr/share/hwdata/pnp.ids')
|
|
|
|
endif
|
|
|
|
|
|
|
|
pnpids_c = custom_target(
|
|
|
|
'pnpids.c',
|
|
|
|
output: 'pnpids.c',
|
|
|
|
input: pnp_ids,
|
|
|
|
feed: true,
|
|
|
|
capture: true,
|
|
|
|
command: files('gen_pnpids.sh'),
|
|
|
|
)
|
|
|
|
wlr_files += pnpids_c
|
|
|
|
|
2019-11-22 08:11:15 +01:00
|
|
|
wlr_files += files(
|
|
|
|
'atomic.c',
|
|
|
|
'backend.c',
|
|
|
|
'cvt.c',
|
|
|
|
'drm.c',
|
|
|
|
'legacy.c',
|
2021-12-10 21:14:57 +01:00
|
|
|
'monitor.c',
|
2019-11-22 08:11:15 +01:00
|
|
|
'properties.c',
|
|
|
|
'renderer.c',
|
|
|
|
'util.c',
|
|
|
|
)
|
2021-03-26 16:28:37 +01:00
|
|
|
|
|
|
|
features += { 'drm-backend': true }
|