summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-03-28 12:21:50 -0400
committerDrew DeVault <sir@cmpwn.com>2018-03-28 14:43:23 -0400
commit893485a29001991955de26d5e2d9f7f975109ab1 (patch)
treea582fadd64ebe0e4cd79aac90049eab5abb16f1b /meson.build
parent7df5461d5ec89dcb7766f439b421b05285c2bf6a (diff)
downloadswaybg-893485a29001991955de26d5e2d9f7f975109ab1.tar.gz
swaybg-893485a29001991955de26d5e2d9f7f975109ab1.tar.bz2
Address review comments
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build36
1 files changed, 16 insertions, 20 deletions
diff --git a/meson.build b/meson.build
index 7f5d6bd..5e10f3c 100644
--- a/meson.build
+++ b/meson.build
@@ -1,22 +1,18 @@
-deps = [
- cairo,
- jsonc,
- math,
- pango,
- pangocairo,
- sway_protos,
- wayland_client,
-]
-
-if gdk_pixbuf.found()
- deps += [gdk_pixbuf]
-endif
-
executable(
- 'swaybg',
- 'main.c',
- include_directories: [sway_inc],
- dependencies: deps,
- link_with: [lib_sway_common, lib_sway_client],
- install: true
+ 'swaybg',
+ 'main.c',
+ include_directories: [sway_inc],
+ dependencies: [
+ cairo,
+ gdk_pixbuf,
+ jsonc,
+ math,
+ pango,
+ pangocairo,
+ sway_protos,
+ wayland_client,
+ wlroots,
+ ],
+ link_with: [lib_sway_common, lib_sway_client],
+ install: true
)