diff options
| author | Drew DeVault <sir@cmpwn.com> | 2018-04-12 20:19:54 -0400 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2018-04-12 20:19:54 -0400 |
| commit | cd1b32453a9296c18b28bff71607aeb22987b5cd (patch) | |
| tree | c653c6d525b471914c01a9d7ae543f521b6138ed /common/meson.build | |
| parent | 8e06985cc1b479724446fba752e0fecfb998e87b (diff) | |
| parent | 5785170421dc38437acde8bb61068cd16fda716c (diff) | |
Merge branch 'wlroots'
Diffstat (limited to 'common/meson.build')
| -rw-r--r-- | common/meson.build | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/common/meson.build b/common/meson.build new file mode 100644 index 00000000..44a29508 --- /dev/null +++ b/common/meson.build @@ -0,0 +1,23 @@ +lib_sway_common = static_library( + 'sway-common', + files( + 'background-image.c', + 'cairo.c', + 'ipc-client.c', + 'log.c', + 'list.c', + 'pango.c', + 'readline.c', + 'stringop.c', + 'unicode.c', + 'util.c' + ), + dependencies: [ + cairo, + gdk_pixbuf, + pango, + pangocairo, + wlroots + ], + include_directories: sway_inc +) |
