mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 03:44:06 +00:00
This is specific to xfree86 DDX, so should be under it's subdir. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
31 lines
536 B
Meson
31 lines
536 B
Meson
srcs_config = [
|
|
'config.c',
|
|
]
|
|
|
|
config_dep = [common_dep]
|
|
|
|
if build_dbus
|
|
srcs_config += 'dbus-core.c'
|
|
config_dep += dbus_dep
|
|
endif
|
|
|
|
if build_hal
|
|
srcs_config += 'hal.c'
|
|
config_dep += hal_dep
|
|
endif
|
|
|
|
if build_udev
|
|
srcs_config += 'udev.c'
|
|
config_dep += udev_dep
|
|
endif
|
|
|
|
if host_machine.system() == 'netbsd' or host_machine.system() == 'openbsd'
|
|
srcs_config += 'wscons.c'
|
|
endif
|
|
|
|
libxserver_config = static_library('xserver_config',
|
|
srcs_config,
|
|
include_directories: inc,
|
|
dependencies: config_dep,
|
|
)
|