diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-04-12 20:19:54 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-04-12 20:19:54 -0400 |
| commit | e62f2f43e2b428a4066fc43e5d2739940f7aa5e9 (patch) | |
| tree | c653c6d525b471914c01a9d7ae543f521b6138ed /swaylock/meson.build | |
| parent | 816bb9d54d2e9e3cbf5e14d7237dc8c8737d6b82 (diff) | |
| parent | 0cb0c52663a8e27f632988da0f91e4cfb6afddf8 (diff) | |
Merge branch 'wlroots'
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 +) |
