summaryrefslogtreecommitdiff
path: root/swaylock/meson.build
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2018-04-02 22:48:13 -0400
committerDrew DeVault <[email protected]>2018-04-04 18:47:48 -0400
commitb32bf595aeae7f8ac68354e45a80c0438374ec17 (patch)
treeb93185d2ac4b7081b9d0651eaaadeae21de48929 /swaylock/meson.build
parenta28730edee1896242012f80fd0e63e7966652e02 (diff)
Initial swaylock port
Diffstat (limited to 'swaylock/meson.build')
-rw-r--r--swaylock/meson.build18
1 files changed, 18 insertions, 0 deletions
diff --git a/swaylock/meson.build b/swaylock/meson.build
new file mode 100644
index 00000000..5b886ded
--- /dev/null
+++ b/swaylock/meson.build
@@ -0,0 +1,18 @@
+executable(
+ 'swaylock',
+ 'main.c',
+ include_directories: [sway_inc],
+ dependencies: [
+ cairo,
+ client_protos,
+ gdk_pixbuf,
+ libpam,
+ math,
+ pango,
+ pangocairo,
+ wayland_client,
+ wlroots,
+ ],
+ link_with: [lib_sway_common, lib_sway_client],
+ install: true
+)