aboutsummaryrefslogtreecommitdiff
path: root/common/meson.build
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-04-04 20:16:35 -0400
committerGitHub <noreply@github.com>2018-04-04 20:16:35 -0400
commitf2153f3f28c8aa2e6738610abf09b2e2396d891a (patch)
tree4702abb406a59fb8588cbd2019741e99d40bcbfe /common/meson.build
parent3852a710ca62a76f4fd9c6ff9d28e7e5d5fcf78d (diff)
parent5d444b34f6af17894e2808c9d25948db625dabde (diff)
Merge pull request #1705 from swaywm/swaylock-layers
Port swaylock to layer shell
Diffstat (limited to 'common/meson.build')
-rw-r--r--common/meson.build21
1 files changed, 9 insertions, 12 deletions
diff --git a/common/meson.build b/common/meson.build
index 4ad47077..44a29508 100644
--- a/common/meson.build
+++ b/common/meson.build
@@ -1,17 +1,7 @@
-deps = [
- cairo,
- pango,
- pangocairo,
- wlroots
-]
-
-if gdk_pixbuf.found()
- deps += [gdk_pixbuf]
-endif
-
lib_sway_common = static_library(
'sway-common',
files(
+ 'background-image.c',
'cairo.c',
'ipc-client.c',
'log.c',
@@ -19,8 +9,15 @@ lib_sway_common = static_library(
'pango.c',
'readline.c',
'stringop.c',
+ 'unicode.c',
'util.c'
),
- dependencies: deps,
+ dependencies: [
+ cairo,
+ gdk_pixbuf,
+ pango,
+ pangocairo,
+ wlroots
+ ],
include_directories: sway_inc
)