wl_xdg_example/meson.build
Artur Mukhamadiev bbab8d3b4f add subprojects
2025-07-03 23:56:11 +03:00

10 lines
243 B
Meson

project('hello-wayland', 'c')
wl_dep = dependency('wayland-client')
wl_mod = import('unstable-wayland')
xml = wl_mod.find_protocol('xdg-shell')
xdg_shell = wl_mod.scan_xml(xml)
executable('hw', 'client.c', xdg_shell, dependencies : wl_dep)