diff options
Diffstat (limited to 'sway/meson.build')
-rw-r--r-- | sway/meson.build | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sway/meson.build b/sway/meson.build index e16691a8..fee2ddd2 100644 --- a/sway/meson.build +++ b/sway/meson.build @@ -2,13 +2,39 @@ sway_sources = files( 'main.c', 'server.c', 'commands.c', + 'input/input-manager.c', + 'input/seat.c', + 'input/cursor.c', + 'input/keyboard.c', 'commands/exit.c', 'commands/exec.c', 'commands/exec_always.c', 'commands/include.c', + 'commands/input.c', + 'commands/seat.c', + 'commands/seat/attach.c', + 'commands/seat/fallback.c', + 'commands/input/accel_profile.c', + 'commands/input/click_method.c', + 'commands/input/drag_lock.c', + 'commands/input/dwt.c', + 'commands/input/events.c', + 'commands/input/left_handed.c', + 'commands/input/middle_emulation.c', + 'commands/input/natural_scroll.c', + 'commands/input/pointer_accel.c', + 'commands/input/scroll_method.c', + 'commands/input/tap.c', + 'commands/input/xkb_layout.c', + 'commands/input/xkb_model.c', + 'commands/input/xkb_options.c', + 'commands/input/xkb_rules.c', + 'commands/input/xkb_variant.c', 'commands/output.c', 'config.c', 'config/output.c', + 'config/seat.c', + 'config/input.c', 'ipc-json.c', 'ipc-server.c', 'desktop/output.c', @@ -28,6 +54,8 @@ sway_deps = [ wlroots, libcap, math, + libinput, + xkbcommon, ] executable( |