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>
23 lines
440 B
Meson
23 lines
440 B
Meson
libxserver_namespace = static_library(
|
|
'xserver_namespace',
|
|
[
|
|
'config.c',
|
|
'hook-client.c',
|
|
'hook-clientstate.c',
|
|
'hook-device.c',
|
|
'hook-ext-access.c',
|
|
'hook-ext-dispatch.c',
|
|
'hook-init-rootwindow.c',
|
|
'hook-property.c',
|
|
'hook-receive.c',
|
|
'hook-resource.c',
|
|
'hook-selection.c',
|
|
'hook-send.c',
|
|
'hook-server.c',
|
|
'hook-windowproperty.c',
|
|
'namespace.c',
|
|
],
|
|
include_directories: inc,
|
|
dependencies: common_dep,
|
|
)
|