mirror of
https://github.com/wizbright/waybox.git
synced 2025-10-29 05:40:20 -04:00
22 lines
289 B
Meson
22 lines
289 B
Meson
wb_src = files(
|
|
'cursor.c',
|
|
'main.c',
|
|
'output.c',
|
|
'seat.c',
|
|
'server.c',
|
|
'xdg_shell.c',
|
|
)
|
|
|
|
wb_dep = [
|
|
wayland_server,
|
|
wlroots,
|
|
xkbcommon,
|
|
]
|
|
|
|
executable(
|
|
'waybox',
|
|
wb_src,
|
|
include_directories: [inc_dir],
|
|
dependencies: [wb_dep, wlr_protos],
|
|
install: true,
|
|
)
|