xserver-multidpi/hw/xnest/meson.build
Olivier Fourdan 3cdac5ba07 mi: List extensions in usage message
Not all extensions can be enabled or disabled at runtime, list the
extensions which can from the help message rather than on error only.

v2:
 * Print the header message in the ListStaticExtensions() (Peter
   Hutterer)
 * Do not export ListStaticExtensions() as Xserver API

Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
2021-01-29 12:52:09 +00:00

45 lines
753 B
Meson

srcs = [
'Args.c',
'Color.c',
'Cursor.c',
'Display.c',
'Events.c',
'Font.c',
'GC.c',
'GCOps.c',
'Handlers.c',
'Init.c',
'Keyboard.c',
'Pixmap.c',
'Pointer.c',
'Screen.c',
'Visual.c',
'Window.c',
'../../mi/miinitext.c',
'../../mi/miinitext.h',
]
executable(
'Xnest',
srcs,
include_directories: inc,
dependencies: [
common_dep,
xnest_dep,
],
link_with: [
libxserver_main,
libxserver,
libxserver_xi_stubs,
libxserver_xkb_stubs,
],
c_args: '-DHAVE_XNEST_CONFIG_H',
install: true,
)
install_man(configure_file(
input: 'man/Xnest.man',
output: 'Xnest.1',
configuration: manpage_config,
))