swayfx/sway/meson.build

81 lines
1.6 KiB
Meson
Raw Normal View History

2017-11-30 22:25:13 +11:00
sway_sources = files(
2017-11-30 19:39:27 +11:00
'main.c',
'server.c',
'commands.c',
2017-12-07 23:31:49 +11:00
'input/input-manager.c',
2017-12-08 01:58:32 +11:00
'input/seat.c',
2017-12-08 23:22:26 +11:00
'input/cursor.c',
2017-12-11 05:59:04 +11:00
'input/keyboard.c',
2017-12-28 02:08:18 +11:00
'commands/bind.c',
2017-11-30 19:39:27 +11:00
'commands/exit.c',
2017-12-05 08:43:49 +11:00
'commands/exec.c',
'commands/exec_always.c',
2018-02-15 08:47:23 +11:00
'commands/focus.c',
2018-01-21 06:10:11 +11:00
'commands/kill.c',
2017-12-06 04:47:57 +11:00
'commands/include.c',
2017-12-11 20:17:14 +11:00
'commands/input.c',
2018-02-23 10:03:46 +11:00
'commands/layout.c',
2017-12-15 03:11:56 +11:00
'commands/seat.c',
'commands/seat/attach.c',
2017-12-18 02:39:22 +11:00
'commands/seat/fallback.c',
2017-12-30 01:31:04 +11:00
'commands/set.c',
2017-12-11 20:17:14 +11:00
'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',
2017-12-15 21:22:51 +11:00
'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',
2017-12-06 22:36:06 +11:00
'commands/output.c',
2018-01-06 08:05:48 +11:00
'commands/reload.c',
2018-01-31 15:09:21 +11:00
'commands/workspace.c',
2017-12-05 20:40:55 +11:00
'config.c',
2017-12-06 22:36:06 +11:00
'config/output.c',
'config/seat.c',
'config/input.c',
2018-01-21 08:21:45 +11:00
'criteria.c',
2017-11-30 19:39:27 +11:00
'ipc-json.c',
'ipc-server.c',
'desktop/output.c',
2018-03-29 06:47:22 +11:00
'desktop/layer_shell.c',
2017-12-04 06:21:26 +11:00
'desktop/wl_shell.c',
2017-11-30 19:39:27 +11:00
'desktop/xdg_shell_v6.c',
2017-12-04 22:19:36 +11:00
'desktop/xwayland.c',
2017-12-05 20:40:55 +11:00
'security.c',
2017-11-30 19:39:27 +11:00
'tree/container.c',
'tree/layout.c',
2018-01-22 01:09:53 +11:00
'tree/view.c',
2017-11-30 19:39:27 +11:00
'tree/workspace.c',
)
sway_deps = [
2018-03-29 06:47:22 +11:00
jsonc,
libcap,
libinput,
math,
2018-01-21 08:21:45 +11:00
pcre,
2017-11-30 19:39:27 +11:00
pixman,
2018-03-29 06:47:22 +11:00
server_protos,
2017-11-30 19:39:27 +11:00
wayland_server,
wlroots,
2017-12-11 05:59:04 +11:00
xkbcommon,
2017-11-30 19:39:27 +11:00
]
executable(
'sway',
sway_sources,
include_directories: [sway_inc],
2017-11-30 22:25:13 +11:00
dependencies: sway_deps,
2017-12-01 00:31:13 +11:00
link_with: [lib_sway_common],
install: true
2017-11-30 19:39:27 +11:00
)