Add wmenu-run executable

This commit is contained in:
adnano 2024-05-02 21:39:54 -04:00
parent 1f221a73cf
commit 41e8599392
7 changed files with 103 additions and 1 deletions

View file

@ -38,12 +38,35 @@ install_data('wmenu_run', install_dir: get_option('bindir'))
executable(
'wmenu',
files(
'main.c',
'menu.c',
'pango.c',
'pool-buffer.c',
'render.c',
'wayland.c',
'wmenu.c',
),
dependencies: [
cairo,
client_protos,
pango,
pangocairo,
rt,
wayland_client,
wayland_protos,
xkbcommon,
],
install: true,
)
executable(
'wmenu-run',
files(
'menu.c',
'pango.c',
'pool-buffer.c',
'render.c',
'wayland.c',
'wmenu-run.c',
),
dependencies: [
cairo,