aboutsummaryrefslogtreecommitdiffstats
path: root/sway/meson.build
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-11-30 06:25:13 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-11-30 06:25:13 -0500
commitcc310cffb0bf4cd2333be26a2ae16848655a306b (patch)
tree83fe5f45fbcb7866a32ce7a9c9f132acb2860f6c /sway/meson.build
parentmake meson version configurable (diff)
downloadsway-cc310cffb0bf4cd2333be26a2ae16848655a306b.tar.gz
sway-cc310cffb0bf4cd2333be26a2ae16848655a306b.tar.zst
sway-cc310cffb0bf4cd2333be26a2ae16848655a306b.zip
meson: common static library
Diffstat (limited to 'sway/meson.build')
-rw-r--r--sway/meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/sway/meson.build b/sway/meson.build
index 1f17ed31..b02506c8 100644
--- a/sway/meson.build
+++ b/sway/meson.build
@@ -1,4 +1,4 @@
1sway_sources = sway_common + files( 1sway_sources = files(
2 'main.c', 2 'main.c',
3 'server.c', 3 'server.c',
4 'commands.c', 4 'commands.c',
@@ -25,5 +25,6 @@ executable(
25 'sway', 25 'sway',
26 sway_sources, 26 sway_sources,
27 include_directories: [sway_inc], 27 include_directories: [sway_inc],
28 dependencies: sway_deps 28 dependencies: sway_deps,
29 link_with: [lib_sway_common]
29) 30)