mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
41 lines
631 B
Meson
41 lines
631 B
Meson
sway_sources = files(
|
|
'main.c',
|
|
'server.c',
|
|
'commands.c',
|
|
'commands/exit.c',
|
|
'commands/exec.c',
|
|
'commands/exec_always.c',
|
|
'commands/include.c',
|
|
'commands/output.c',
|
|
'config.c',
|
|
'config/output.c',
|
|
'ipc-json.c',
|
|
'ipc-server.c',
|
|
'desktop/output.c',
|
|
'desktop/wl_shell.c',
|
|
'desktop/xdg_shell_v6.c',
|
|
'desktop/xwayland.c',
|
|
'security.c',
|
|
'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],
|
|
dependencies: sway_deps,
|
|
link_with: [lib_sway_common],
|
|
install: true
|
|
)
|