2018-03-27 17:35:34 +00:00
|
|
|
wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir')
|
|
|
|
|
2019-06-23 03:02:24 +00: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,
|
|
|
|
)
|
2018-04-13 05:54:08 +00:00
|
|
|
else
|
2019-06-23 03:02:24 +00:00
|
|
|
wayland_scanner = find_program('wayland-scanner', native: true)
|
2018-04-13 05:54:08 +00:00
|
|
|
endif
|
|
|
|
|
2019-06-23 03:02:24 +00:00
|
|
|
protocols = [
|
2018-03-27 19:25:25 +00:00
|
|
|
[wl_protocol_dir, 'stable/xdg-shell/xdg-shell.xml'],
|
2018-05-18 22:47:47 +00:00
|
|
|
[wl_protocol_dir, 'unstable/xdg-output/xdg-output-unstable-v1.xml'],
|
2019-06-23 03:02:24 +00:00
|
|
|
[wl_protocol_dir, 'unstable/pointer-constraints/pointer-constraints-unstable-v1.xml'],
|
2019-09-18 04:46:29 +00:00
|
|
|
[wl_protocol_dir, 'unstable/tablet/tablet-unstable-v2.xml'],
|
2018-04-03 21:03:29 +00:00
|
|
|
['wlr-layer-shell-unstable-v1.xml'],
|
2018-04-17 07:54:02 +00:00
|
|
|
['idle.xml'],
|
2018-05-18 22:47:47 +00:00
|
|
|
['wlr-input-inhibitor-unstable-v1.xml'],
|
2020-01-27 17:39:29 +00:00
|
|
|
['wlr-output-power-management-unstable-v1.xml'],
|
2018-03-27 17:35:34 +00:00
|
|
|
]
|
|
|
|
|
2019-06-23 03:02:24 +00:00
|
|
|
client_protocols = [
|
2018-05-13 15:38:56 +00:00
|
|
|
[wl_protocol_dir, 'stable/xdg-shell/xdg-shell.xml'],
|
2018-05-18 22:47:47 +00:00
|
|
|
[wl_protocol_dir, 'unstable/xdg-output/xdg-output-unstable-v1.xml'],
|
2018-04-03 21:03:29 +00:00
|
|
|
['wlr-layer-shell-unstable-v1.xml'],
|
2018-05-18 22:47:47 +00:00
|
|
|
['wlr-input-inhibitor-unstable-v1.xml'],
|
2018-03-28 19:47:22 +00:00
|
|
|
]
|
|
|
|
|
2019-06-23 03:02:24 +00:00
|
|
|
wl_protos_src = []
|
|
|
|
wl_protos_headers = []
|
2018-03-27 17:35:34 +00:00
|
|
|
|
2019-06-23 03:02:24 +00:00
|
|
|
foreach p : protocols
|
2018-03-27 17:35:34 +00:00
|
|
|
xml = join_paths(p)
|
2019-06-23 03:02:24 +00:00
|
|
|
wl_protos_src += custom_target(
|
|
|
|
xml.underscorify() + '_server_c',
|
|
|
|
input: xml,
|
|
|
|
output: '@BASENAME@-protocol.c',
|
|
|
|
command: [wayland_scanner, 'private-code', '@INPUT@', '@OUTPUT@'],
|
|
|
|
)
|
|
|
|
wl_protos_headers += custom_target(
|
|
|
|
xml.underscorify() + '_server_h',
|
|
|
|
input: xml,
|
|
|
|
output: '@BASENAME@-protocol.h',
|
|
|
|
command: [wayland_scanner, 'server-header', '@INPUT@', '@OUTPUT@'],
|
|
|
|
)
|
2018-03-27 17:35:34 +00:00
|
|
|
endforeach
|
|
|
|
|
2019-06-23 03:02:24 +00:00
|
|
|
foreach p : client_protocols
|
2018-03-28 19:47:22 +00:00
|
|
|
xml = join_paths(p)
|
2019-06-23 03:02:24 +00:00
|
|
|
wl_protos_headers += custom_target(
|
|
|
|
xml.underscorify() + '_client_h',
|
|
|
|
input: xml,
|
|
|
|
output: '@BASENAME@-client-protocol.h',
|
|
|
|
command: [wayland_scanner, 'client-header', '@INPUT@', '@OUTPUT@'],
|
|
|
|
)
|
2018-03-28 19:47:22 +00:00
|
|
|
endforeach
|
|
|
|
|
|
|
|
lib_client_protos = static_library(
|
|
|
|
'client_protos',
|
2019-06-23 03:02:24 +00:00
|
|
|
wl_protos_src + wl_protos_headers,
|
|
|
|
dependencies: wayland_client.partial_dependency(compile_args: true),
|
|
|
|
)
|
2018-03-28 19:47:22 +00:00
|
|
|
|
|
|
|
client_protos = declare_dependency(
|
|
|
|
link_with: lib_client_protos,
|
2019-06-23 03:02:24 +00:00
|
|
|
sources: wl_protos_headers,
|
2018-03-28 19:47:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
lib_server_protos = static_library(
|
|
|
|
'server_protos',
|
2019-06-23 03:02:24 +00:00
|
|
|
wl_protos_src + wl_protos_headers,
|
|
|
|
dependencies: wayland_server.partial_dependency(compile_args: true),
|
|
|
|
)
|
2018-03-27 17:35:34 +00:00
|
|
|
|
2018-03-28 19:47:22 +00:00
|
|
|
server_protos = declare_dependency(
|
|
|
|
link_with: lib_server_protos,
|
2019-06-23 03:02:24 +00:00
|
|
|
sources: wl_protos_headers,
|
2018-03-27 17:35:34 +00:00
|
|
|
)
|