aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-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 @@
-sway_sources = sway_common + files(
+sway_sources = files(
'main.c',
'server.c',
'commands.c',
@@ -25,5 +25,6 @@ executable(
'sway',
sway_sources,
include_directories: [sway_inc],
- dependencies: sway_deps
+ dependencies: sway_deps,
+ link_with: [lib_sway_common]
)