xdg-desktop-portal-hyprland/protocols/meson.build

36 lines
906 B
Meson
Raw Normal View History

2020-01-24 23:31:01 +01:00
wayland_scanner_dep = dependency('wayland-scanner', required: false, native: true)
if wayland_scanner_dep.found()
wayland_scanner = find_program(
wayland_scanner_dep.get_pkgconfig_variable('wayland_scanner'),
native: true,
)
else
wayland_scanner = find_program('wayland-scanner', native: true)
endif
client_protocols = [
'linux-dmabuf-unstable-v1.xml',
'wlr-screencopy-unstable-v1.xml',
'xdg-output-unstable-v1.xml',
]
wl_proto_files = []
2020-01-24 23:31:01 +01:00
foreach xml: client_protocols
code = custom_target(
xml.underscorify() + '_c',
2020-01-24 23:31:01 +01:00
input: xml,
output: '@BASENAME@-protocol.c',
command: [wayland_scanner, 'private-code', '@INPUT@', '@OUTPUT@'],
)
client_header = custom_target(
2020-01-24 23:31:01 +01:00
xml.underscorify() + '_client_h',
input: xml,
output: '@BASENAME@-client-protocol.h',
command: [wayland_scanner, 'client-header', '@INPUT@', '@OUTPUT@'],
)
wl_proto_files += [code, client_header]
endforeach