mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-28 07:49:59 +00:00
this was producing static libraries named "liblibsomething.a" Signed-off-by: dasha_uwu <dasha@linuxping.win>
19 lines
315 B
Meson
19 lines
315 B
Meson
srcs_miext_damage = [
|
|
'damage.c',
|
|
]
|
|
|
|
hdrs_miext_damage = [
|
|
'damage.h',
|
|
'damagestr.h',
|
|
]
|
|
|
|
libxserver_miext_damage = static_library('xserver_miext_damage',
|
|
srcs_miext_damage,
|
|
include_directories: inc,
|
|
dependencies: common_dep,
|
|
)
|
|
|
|
if build_xorg
|
|
install_data(hdrs_miext_damage, install_dir: xorgsdkdir)
|
|
endif
|