sway/sway/meson.build

34 lines
491 B
Meson
Raw Normal View History

2017-11-30 11:25:13 +00:00
sway_sources = files(
2017-11-30 08:39:27 +00:00
'main.c',
'server.c',
'commands.c',
'commands/exit.c',
'ipc-json.c',
'ipc-server.c',
'desktop/output.c',
2017-12-03 19:21:26 +00:00
'desktop/wl_shell.c',
2017-11-30 08:39:27 +00:00
'desktop/xdg_shell_v6.c',
2017-12-04 11:19:36 +00:00
'desktop/xwayland.c',
2017-11-30 08:39:27 +00:00
'tree/container.c',
'tree/layout.c',
'tree/workspace.c',
)
sway_deps = [
pixman,
wayland_server,
jsonc,
wlroots,
libcap,
math,
]
executable(
'sway',
sway_sources,
include_directories: [sway_inc],
2017-11-30 11:25:13 +00:00
dependencies: sway_deps,
2017-11-30 13:31:13 +00:00
link_with: [lib_sway_common],
install: true
2017-11-30 08:39:27 +00:00
)