mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
41ec686693
Right now, we are adding systemd and elogind backends to the build system as soon as their libraries are found on the build system. Instead, we should only add them if the libraries have been found _and_ the user has actually requested them to be included.
49 lines
1.1 KiB
Meson
49 lines
1.1 KiB
Meson
backend_files = files(
|
|
'backend.c',
|
|
'session/direct-ipc.c',
|
|
'session/session.c',
|
|
'drm/atomic.c',
|
|
'drm/backend.c',
|
|
'drm/drm.c',
|
|
'drm/legacy.c',
|
|
'drm/properties.c',
|
|
'drm/renderer.c',
|
|
'drm/util.c',
|
|
'headless/backend.c',
|
|
'headless/output.c',
|
|
'headless/input_device.c',
|
|
'libinput/backend.c',
|
|
'libinput/events.c',
|
|
'libinput/keyboard.c',
|
|
'libinput/pointer.c',
|
|
'libinput/tablet_pad.c',
|
|
'libinput/tablet_tool.c',
|
|
'libinput/touch.c',
|
|
'multi/backend.c',
|
|
'wayland/backend.c',
|
|
'wayland/output.c',
|
|
'wayland/registry.c',
|
|
'wayland/wl_seat.c',
|
|
'x11/backend.c',
|
|
)
|
|
|
|
if host_machine.system().startswith('freebsd')
|
|
backend_files += files('session/direct-freebsd.c')
|
|
else
|
|
backend_files += files('session/direct.c')
|
|
endif
|
|
|
|
if systemd.found() and get_option('enable_systemd')
|
|
backend_files += files('session/logind.c')
|
|
endif
|
|
|
|
if elogind.found() and get_option('enable_elogind')
|
|
backend_files += files('session/logind.c')
|
|
endif
|
|
|
|
lib_wlr_backend = static_library(
|
|
'wlr_backend',
|
|
backend_files,
|
|
include_directories: wlr_inc,
|
|
dependencies: [wayland_server, egl, gbm, libinput, systemd, elogind, wlr_render, wlr_protos, drm],
|
|
)
|