2017-08-11 13:37:09 +00:00
|
|
|
wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir')
|
|
|
|
|
|
|
|
wayland_scanner = find_program('wayland-scanner')
|
|
|
|
|
2017-08-30 18:30:47 +00:00
|
|
|
wayland_scanner_server = generator(
|
|
|
|
wayland_scanner,
|
|
|
|
output: '@BASENAME@-protocol.h',
|
|
|
|
arguments: ['server-header', '@INPUT@', '@OUTPUT@'],
|
|
|
|
)
|
|
|
|
|
2018-04-05 04:58:15 +00:00
|
|
|
# should check wayland_scanner's version, but it is hard to get
|
|
|
|
if wayland_server.version().version_compare('>=1.14.91')
|
|
|
|
code_type = 'private-code'
|
|
|
|
else
|
|
|
|
code_type = 'code'
|
|
|
|
endif
|
|
|
|
|
2017-08-30 18:30:47 +00:00
|
|
|
wayland_scanner_code = generator(
|
|
|
|
wayland_scanner,
|
|
|
|
output: '@BASENAME@-protocol.c',
|
2018-04-05 04:58:15 +00:00
|
|
|
arguments: [code_type, '@INPUT@', '@OUTPUT@'],
|
2017-08-30 18:30:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
wayland_scanner_client = generator(
|
|
|
|
wayland_scanner,
|
|
|
|
output: '@BASENAME@-client-protocol.h',
|
|
|
|
arguments: ['client-header', '@INPUT@', '@OUTPUT@'],
|
|
|
|
)
|
2017-08-16 17:19:31 +00:00
|
|
|
|
2017-08-11 13:37:09 +00:00
|
|
|
protocols = [
|
2018-02-14 11:40:13 +00:00
|
|
|
[wl_protocol_dir, 'stable/xdg-shell/xdg-shell.xml'],
|
2018-02-07 10:10:49 +00:00
|
|
|
[wl_protocol_dir, 'unstable/idle-inhibit/idle-inhibit-unstable-v1.xml'],
|
2018-02-23 17:45:16 +00:00
|
|
|
[wl_protocol_dir, 'unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml'],
|
2018-03-01 15:20:15 +00:00
|
|
|
[wl_protocol_dir, 'unstable/xdg-shell/xdg-shell-unstable-v6.xml'],
|
2018-04-05 16:22:19 +00:00
|
|
|
[wl_protocol_dir, 'unstable/xdg-output/xdg-output-unstable-v1.xml'],
|
2017-09-07 15:31:30 +00:00
|
|
|
'gamma-control.xml',
|
2017-12-22 18:20:12 +00:00
|
|
|
'gtk-primary-selection.xml',
|
2018-02-12 20:29:23 +00:00
|
|
|
'idle.xml',
|
2017-09-07 15:31:30 +00:00
|
|
|
'screenshooter.xml',
|
2017-10-24 19:56:18 +00:00
|
|
|
'server-decoration.xml',
|
2018-03-17 19:07:48 +00:00
|
|
|
'wlr-layer-shell-unstable-v1.xml',
|
2018-04-03 14:50:16 +00:00
|
|
|
'wlr-input-inhibitor-unstable-v1.xml',
|
2017-08-11 13:37:09 +00:00
|
|
|
]
|
|
|
|
|
2017-08-16 17:19:31 +00:00
|
|
|
client_protocols = [
|
2017-09-07 15:31:30 +00:00
|
|
|
[wl_protocol_dir, 'unstable/xdg-shell/xdg-shell-unstable-v6.xml'],
|
2018-02-17 10:02:00 +00:00
|
|
|
[wl_protocol_dir, 'stable/xdg-shell/xdg-shell.xml'],
|
2018-02-07 10:10:49 +00:00
|
|
|
[wl_protocol_dir, 'unstable/idle-inhibit/idle-inhibit-unstable-v1.xml'],
|
2018-02-12 20:29:23 +00:00
|
|
|
'idle.xml',
|
2017-09-08 16:09:09 +00:00
|
|
|
'screenshooter.xml',
|
2018-03-18 19:09:37 +00:00
|
|
|
'wlr-layer-shell-unstable-v1.xml',
|
2018-04-03 14:50:16 +00:00
|
|
|
'wlr-input-inhibitor-unstable-v1.xml',
|
2017-08-16 17:19:31 +00:00
|
|
|
]
|
|
|
|
|
2017-08-11 13:37:09 +00:00
|
|
|
wl_protos_src = []
|
|
|
|
wl_protos_headers = []
|
|
|
|
|
|
|
|
foreach p : protocols
|
2017-08-30 18:30:47 +00:00
|
|
|
xml = join_paths(p)
|
|
|
|
wl_protos_src += wayland_scanner_code.process(xml)
|
|
|
|
wl_protos_headers += wayland_scanner_server.process(xml)
|
2017-08-11 13:37:09 +00:00
|
|
|
endforeach
|
|
|
|
|
2017-08-16 17:19:31 +00:00
|
|
|
foreach p : client_protocols
|
2017-08-30 18:30:47 +00:00
|
|
|
xml = join_paths(p)
|
|
|
|
wl_protos_headers += wayland_scanner_client.process(xml)
|
2017-08-16 17:19:31 +00:00
|
|
|
endforeach
|
|
|
|
|
2017-10-09 22:23:43 +00:00
|
|
|
lib_wl_protos = static_library('wl_protos', wl_protos_src + wl_protos_headers,
|
|
|
|
dependencies: [wayland_client]) # for the include directory
|
2017-08-30 18:30:47 +00:00
|
|
|
|
2017-08-11 13:37:09 +00:00
|
|
|
wlr_protos = declare_dependency(
|
2017-08-30 18:30:47 +00:00
|
|
|
link_with: lib_wl_protos,
|
|
|
|
sources: wl_protos_headers,
|
|
|
|
)
|