You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
379 B
21 lines
379 B
libseat = dependency('libseat',
|
|
version: '>=0.2.0',
|
|
fallback: ['seatd', 'libseat'],
|
|
default_options: ['server=disabled', 'man-pages=disabled'],
|
|
)
|
|
|
|
wlr_files += files(
|
|
'direct-ipc.c',
|
|
'noop.c',
|
|
'session.c',
|
|
'libseat.c'
|
|
)
|
|
|
|
if host_machine.system().startswith('freebsd')
|
|
wlr_files += files('direct-freebsd.c')
|
|
else
|
|
wlr_files += files('direct.c')
|
|
endif
|
|
|
|
wlr_deps += libseat
|