Files
xserver/render/meson.build
dasha_uwu 7c64a06ba4 treewide: remove "lib" prefix in static_library names (meson)
this was producing static libraries named "liblibsomething.a"

Signed-off-by: dasha_uwu <dasha@linuxping.win>
2025-07-03 12:01:52 +02:00

31 lines
494 B
Meson

srcs_render = [
'animcur.c',
'filter.c',
'glyph.c',
'matrix.c',
'miindex.c',
'mipict.c',
'mirect.c',
'mitrap.c',
'mitri.c',
'picture.c',
'render.c',
]
hdrs_render = [
'glyphstr.h',
'mipict.h',
'picture.h',
'picturestr.h',
]
libxserver_render = static_library('xserver_render',
srcs_render,
include_directories: inc,
dependencies: common_dep,
)
if build_xorg
install_data(hdrs_render, install_dir: xorgsdkdir)
endif