2024-01-02 08:20:40 +01:00
|
|
|
wl_protocol_dir = wayland_protos.get_variable('pkgdatadir')
|
2020-05-20 22:04:22 +01:00
|
|
|
wayland_scanner = find_program('wayland-scanner')
|
|
|
|
|
|
|
|
|
|
wayland_scanner_code = generator(
|
|
|
|
|
wayland_scanner,
|
|
|
|
|
output: '@BASENAME@-protocol.c',
|
|
|
|
|
arguments: ['private-code', '@INPUT@', '@OUTPUT@'],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
wayland_scanner_server = generator(
|
|
|
|
|
wayland_scanner,
|
|
|
|
|
output: '@BASENAME@-protocol.h',
|
|
|
|
|
arguments: ['server-header', '@INPUT@', '@OUTPUT@'],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
server_protocols = [
|
2022-10-14 22:44:51 +01:00
|
|
|
'wlr-layer-shell-unstable-v1.xml',
|
|
|
|
|
'wlr-output-power-management-unstable-v1.xml',
|
2020-05-20 22:04:22 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
server_protos_src = []
|
|
|
|
|
server_protos_headers = []
|
|
|
|
|
|
2022-10-14 22:44:51 +01:00
|
|
|
foreach xml : server_protocols
|
2020-05-20 22:04:22 +01:00
|
|
|
server_protos_src += wayland_scanner_code.process(xml)
|
|
|
|
|
server_protos_headers += wayland_scanner_server.process(xml)
|
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
|
|
lib_server_protos = static_library(
|
|
|
|
|
'server_protos',
|
|
|
|
|
server_protos_src + server_protos_headers,
|
|
|
|
|
dependencies: [wayland_server]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
server_protos = declare_dependency(
|
|
|
|
|
link_with: lib_server_protos,
|
|
|
|
|
sources: server_protos_headers,
|
|
|
|
|
)
|