mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
7f09085461
libseat provides all session functionality, so there is no longer need for a session backend abstraction. The libseat device ID, seat handle and event loop handle are moved to the main wlr_session and wlr_device structs.
7 lines
201 B
Meson
7 lines
201 B
Meson
libseat = dependency('libseat',
|
|
version: '>=0.2.0',
|
|
fallback: ['seatd', 'libseat'],
|
|
default_options: ['server=disabled', 'man-pages=disabled'],
|
|
)
|
|
wlr_files += files('session.c')
|
|
wlr_deps += libseat
|