summaryrefslogtreecommitdiff
path: root/swaybg/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'swaybg/meson.build')
-rw-r--r--swaybg/meson.build36
1 files changed, 16 insertions, 20 deletions
diff --git a/swaybg/meson.build b/swaybg/meson.build
index 7f5d6bd1..5e10f3c7 100644
--- a/swaybg/meson.build
+++ b/swaybg/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
)