session: Add libseat backend

This commit is contained in:
Kenny Levinsen 2020-07-25 21:53:06 +02:00 committed by Simon Ser
parent 9feeb2738d
commit bad1e9afa8
13 changed files with 244 additions and 7 deletions

View file

@ -62,3 +62,12 @@ if logind_found
wlr_files += files('logind.c')
wlr_deps += logind
endif
# libseat
libseat = dependency('libseat', required: get_option('libseat'))
if libseat.found()
wlr_files += files('libseat.c')
wlr_deps += libseat
conf_data.set10('WLR_HAS_LIBSEAT', true)
endif