aboutsummaryrefslogtreecommitdiff
path: root/client/meson.build
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-04-12 20:19:54 -0400
committerFurkan Sahin <furkan-dev@proton.me>2018-04-12 20:19:54 -0400
commite62f2f43e2b428a4066fc43e5d2739940f7aa5e9 (patch)
treec653c6d525b471914c01a9d7ae543f521b6138ed /client/meson.build
parent816bb9d54d2e9e3cbf5e14d7237dc8c8737d6b82 (diff)
parent0cb0c52663a8e27f632988da0f91e4cfb6afddf8 (diff)
Merge branch 'wlroots'
Diffstat (limited to 'client/meson.build')
-rw-r--r--client/meson.build16
1 files changed, 16 insertions, 0 deletions
diff --git a/client/meson.build b/client/meson.build
new file mode 100644
index 00000000..2bdda457
--- /dev/null
+++ b/client/meson.build
@@ -0,0 +1,16 @@
+lib_sway_client = static_library(
+ 'sway-client',
+ files(
+ 'pool-buffer.c',
+ ),
+ dependencies: [
+ cairo,
+ gdk_pixbuf,
+ pango,
+ pangocairo,
+ wlroots,
+ wayland_client,
+ ],
+ link_with: [lib_sway_common],
+ include_directories: sway_inc
+)