mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-25 16:42:26 +00: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.
8 lines
201 B
Meson
8 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
|