Files
xserver/randr/meson.build
Enrico Weigelt, metux IT consult 5e38615365 randr: inline byte-swapping into actual request handlers
No need to have whole extra functions for just a few LoC, and in the
future the whole thing will become more simplified by generic macros.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
2025-09-29 12:35:03 +02:00

36 lines
600 B
Meson

srcs_randr = [
'randr.c',
'rrcrtc.c',
'rrdispatch.c',
'rrinfo.c',
'rrlease.c',
'rrmode.c',
'rrmonitor.c',
'rroutput.c',
'rrpointer.c',
'rrproperty.c',
'rrprovider.c',
'rrproviderproperty.c',
'rrscreen.c',
'rrtransform.c',
]
hdrs_randr = [
'randrstr.h',
'rrtransform.h',
]
if build_xinerama
srcs_randr += 'rrxinerama.c'
endif
libxserver_randr = static_library('xserver_randr',
srcs_randr,
include_directories: inc,
dependencies: common_dep,
)
if build_xorg
install_data(hdrs_randr, install_dir: xorgsdkdir)
endif