waybox/waybox/meson.build
2020-02-29 12:16:50 -05:00

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,
)