diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-22 13:26:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-22 13:26:02 -0400 |
commit | dc26f6a8f8f84fd1e2787a33b9e073432afb4ad0 (patch) | |
tree | 54500805872d3f79c29b05f4f185d4dfad219fa8 /backend/meson.build | |
parent | e5e6dab7fdbbcc5ce62a40a14b138b4e59a148d9 (diff) | |
parent | 881d5a851cce96176ab4a4df2626d972fcde8db7 (diff) |
Merge pull request #154 from Dudemanguy911/master
Add elogind support
Diffstat (limited to 'backend/meson.build')
-rw-r--r-- | backend/meson.build | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/backend/meson.build b/backend/meson.build index eb8c5d8b..a3cb7b64 100644 --- a/backend/meson.build +++ b/backend/meson.build @@ -28,9 +28,13 @@ if systemd.found() backend_files += files('session/logind.c') endif +if elogind.found() + 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, wlr_protos], + dependencies: [wayland_server, egl, gbm, libinput, systemd, elogind, wlr_protos], ) |