mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 08:04:30 +00:00
this was producing static libraries named "liblibsomething.a" Signed-off-by: dasha_uwu <dasha@linuxping.win>
15 lines
252 B
Meson
15 lines
252 B
Meson
srcs_xfixes = [
|
|
'cursor.c',
|
|
'disconnect.c',
|
|
'region.c',
|
|
'saveset.c',
|
|
'select.c',
|
|
'xfixes.c',
|
|
]
|
|
|
|
libxserver_xfixes = static_library('xserver_xfixes',
|
|
srcs_xfixes,
|
|
include_directories: inc,
|
|
dependencies: common_dep,
|
|
)
|