aboutsummaryrefslogtreecommitdiffstats
path: root/sway/meson.build
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2019-01-13 20:38:34 -0500
committerLibravatar GitHub <noreply@github.com>2019-01-13 20:38:34 -0500
commit23ab56bbf746e7aa4a940caa343d447a969fa37e (patch)
tree087201fd4d39c3a551c925c4f5479311e10e6623 /sway/meson.build
parentMerge pull request #3388 from RedSoxFan/reset-inputs-on-reload (diff)
parentRefactor seat operations to use an interface (diff)
downloadsway-23ab56bbf746e7aa4a940caa343d447a969fa37e.tar.gz
sway-23ab56bbf746e7aa4a940caa343d447a969fa37e.tar.zst
sway-23ab56bbf746e7aa4a940caa343d447a969fa37e.zip
Merge pull request #3402 from RyanDwyer/refactor-seatops
Refactor seat operations to use an interface
Diffstat (limited to 'sway/meson.build')
-rw-r--r--sway/meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/meson.build b/sway/meson.build
index ab5862c5..b49d550a 100644
--- a/sway/meson.build
+++ b/sway/meson.build
@@ -23,6 +23,11 @@ sway_sources = files(
23 23
24 'input/input-manager.c', 24 'input/input-manager.c',
25 'input/seat.c', 25 'input/seat.c',
26 'input/seatop_down.c',
27 'input/seatop_move_floating.c',
28 'input/seatop_move_tiling.c',
29 'input/seatop_resize_floating.c',
30 'input/seatop_resize_tiling.c',
26 'input/cursor.c', 31 'input/cursor.c',
27 'input/keyboard.c', 32 'input/keyboard.c',
28 33