mirror of
https://github.com/wizbright/waybox.git
synced 2025-10-31 22:25:28 -04:00
27 lines
415 B
Meson
27 lines
415 B
Meson
wb_src = files(
|
|
'config.c',
|
|
'cursor.c',
|
|
'decoration.c',
|
|
'layer_shell.c',
|
|
'main.c',
|
|
'output.c',
|
|
'seat.c',
|
|
'server.c',
|
|
'xdg_shell.c',
|
|
)
|
|
|
|
wb_dep = [
|
|
libxml2,
|
|
wayland_server,
|
|
wlroots,
|
|
xkbcommon,
|
|
]
|
|
|
|
executable(
|
|
'waybox',
|
|
wb_src,
|
|
include_directories: [inc_dir],
|
|
dependencies: [wb_dep, wlr_protos],
|
|
install: true,
|
|
install_dir: get_option('prefix') / get_option('libexecdir'),
|
|
)
|