aboutsummaryrefslogtreecommitdiffstats
path: root/common/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'common/meson.build')
-rw-r--r--common/meson.build17
1 files changed, 10 insertions, 7 deletions
diff --git a/common/meson.build b/common/meson.build
index ca1f1752..3a4282ad 100644
--- a/common/meson.build
+++ b/common/meson.build
@@ -1,8 +1,11 @@
1sway_common = files( 1lib_sway_common = static_library('sway-common',
2 'log.c', 2 files(
3 'list.c', 3 'log.c',
4 'util.c', 4 'list.c',
5 'stringop.c', 5 'util.c',
6 'readline.c', 6 'stringop.c',
7 'ipc-client.c' 7 'readline.c',
8 'ipc-client.c'
9 ),
10 include_directories: sway_inc
8) 11)