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