diff options
author | emersion <contact@emersion.fr> | 2018-04-04 20:16:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-04 20:16:35 -0400 |
commit | f2153f3f28c8aa2e6738610abf09b2e2396d891a (patch) | |
tree | 4702abb406a59fb8588cbd2019741e99d40bcbfe /swaylock/meson.build | |
parent | 3852a710ca62a76f4fd9c6ff9d28e7e5d5fcf78d (diff) | |
parent | 5d444b34f6af17894e2808c9d25948db625dabde (diff) |
Merge pull request #1705 from swaywm/swaylock-layers
Port swaylock to layer shell
Diffstat (limited to 'swaylock/meson.build')
-rw-r--r-- | swaylock/meson.build | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/swaylock/meson.build b/swaylock/meson.build new file mode 100644 index 00000000..3cde47a4 --- /dev/null +++ b/swaylock/meson.build @@ -0,0 +1,23 @@ +executable( + 'swaylock', [ + 'main.c', + 'password.c', + 'render.c', + 'seat.c' + ], + include_directories: [sway_inc], + dependencies: [ + cairo, + client_protos, + gdk_pixbuf, + libpam, + math, + pango, + pangocairo, + xkbcommon, + wayland_client, + wlroots, + ], + link_with: [lib_sway_common, lib_sway_client], + install: true +) |