2023-09-06 20:36:48 +02:00
|
|
|
wayland_protos = dependency('wayland-protocols',
|
|
|
|
version: '>=1.31',
|
|
|
|
default_options: ['tests=false'],
|
|
|
|
)
|
|
|
|
|
|
|
|
hyprland_protos = dependency('hyprland-protocols',
|
|
|
|
version: '>=0.2',
|
|
|
|
fallback: 'hyprland-protocols',
|
|
|
|
)
|
|
|
|
|
2022-05-05 22:04:22 +02:00
|
|
|
wl_protocol_dir = wayland_protos.get_variable('pkgdatadir')
|
2023-01-07 19:28:38 +01:00
|
|
|
hl_protocol_dir = hyprland_protos.get_variable('pkgdatadir')
|
2022-05-05 22:04:22 +02:00
|
|
|
|
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(
|
2022-05-05 22:07:32 +02:00
|
|
|
wayland_scanner_dep.get_variable(pkgconfig: 'wayland_scanner'),
|
2020-01-24 23:31:01 +01:00
|
|
|
native: true,
|
|
|
|
)
|
|
|
|
else
|
|
|
|
wayland_scanner = find_program('wayland-scanner', native: true)
|
|
|
|
endif
|
2020-02-19 22:55:51 +01:00
|
|
|
client_protocols = [
|
|
|
|
'wlr-screencopy-unstable-v1.xml',
|
2022-12-12 15:51:37 +01:00
|
|
|
'wlr-foreign-toplevel-management-unstable-v1.xml',
|
2023-09-06 20:36:48 +02:00
|
|
|
hl_protocol_dir / 'protocols/hyprland-toplevel-export-v1.xml',
|
|
|
|
hl_protocol_dir / 'protocols/hyprland-global-shortcuts-v1.xml',
|
|
|
|
wl_protocol_dir / 'unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml',
|
2020-02-19 22:55:51 +01:00
|
|
|
]
|
|
|
|
|
2021-04-17 12:06:16 +02:00
|
|
|
wl_proto_files = []
|
2020-01-24 23:31:01 +01:00
|
|
|
|
2020-02-19 22:55:51 +01:00
|
|
|
foreach xml: client_protocols
|
2021-04-17 12:06:16 +02:00
|
|
|
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@'],
|
|
|
|
)
|
|
|
|
|
2021-04-17 12:06:16 +02:00
|
|
|
client_header = custom_target(
|
2020-01-24 23:31:01 +01:00
|
|
|
xml.underscorify() + '_client_h',
|
|
|
|
input: xml,
|
2023-09-06 20:36:48 +02:00
|
|
|
output: '@BASENAME@-protocol.h',
|
2020-01-24 23:31:01 +01:00
|
|
|
command: [wayland_scanner, 'client-header', '@INPUT@', '@OUTPUT@'],
|
|
|
|
)
|
|
|
|
|
2021-04-17 12:06:16 +02:00
|
|
|
wl_proto_files += [code, client_header]
|
|
|
|
endforeach
|