swayfx/sway/meson.build

45 lines
695 B
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-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',
2017-12-06 04:47:57 +11:00
'commands/include.c',
2017-12-05 20:40:55 +11:00
'config.c',
2017-11-30 19:39:27 +11:00
'ipc-json.c',
'ipc-server.c',
'desktop/output.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',
'tree/workspace.c',
)
sway_deps = [
pixman,
wayland_server,
jsonc,
wlroots,
libcap,
math,
2017-12-07 00:28:46 +11:00
libinput,
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
)