2017-08-11 13:37:09 +00:00
|
|
|
wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir')
|
|
|
|
|
2018-08-24 07:35:02 +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-08-22 05:29:43 +00:00
|
|
|
else
|
2018-08-24 07:35:02 +00:00
|
|
|
wayland_scanner = find_program('wayland-scanner', native: true)
|
2018-08-22 05:29:43 +00:00
|
|
|
endif
|
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-04-11 14:17:28 +00:00
|
|
|
[wl_protocol_dir, 'unstable/tablet/tablet-unstable-v2.xml'],
|
2018-06-10 10:15:26 +00:00
|
|
|
[wl_protocol_dir, 'unstable/xdg-decoration/xdg-decoration-unstable-v1.xml'],
|
|
|
|
[wl_protocol_dir, 'unstable/xdg-output/xdg-output-unstable-v1.xml'],
|
|
|
|
[wl_protocol_dir, 'unstable/xdg-shell/xdg-shell-unstable-v6.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-05-24 17:46:54 +00:00
|
|
|
'virtual-keyboard-unstable-v1.xml',
|
2018-05-22 16:38:05 +00:00
|
|
|
'wlr-export-dmabuf-unstable-v1.xml',
|
2018-07-22 12:23:32 +00:00
|
|
|
'wlr-gamma-control-unstable-v1.xml',
|
2018-04-03 14:50:16 +00:00
|
|
|
'wlr-input-inhibitor-unstable-v1.xml',
|
2018-05-22 16:38:05 +00:00
|
|
|
'wlr-layer-shell-unstable-v1.xml',
|
2018-06-19 18:07:29 +00:00
|
|
|
'wlr-screencopy-unstable-v1.xml',
|
2017-08-11 13:37:09 +00:00
|
|
|
]
|
|
|
|
|
2017-08-16 17:19:31 +00:00
|
|
|
client_protocols = [
|
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-06-10 10:15:26 +00:00
|
|
|
[wl_protocol_dir, 'unstable/xdg-decoration/xdg-decoration-unstable-v1.xml'],
|
|
|
|
[wl_protocol_dir, 'unstable/xdg-shell/xdg-shell-unstable-v6.xml'],
|
2018-02-12 20:29:23 +00:00
|
|
|
'idle.xml',
|
2017-09-08 16:09:09 +00:00
|
|
|
'screenshooter.xml',
|
2018-05-27 03:03:29 +00:00
|
|
|
'wlr-export-dmabuf-unstable-v1.xml',
|
2018-07-23 21:48:00 +00:00
|
|
|
'wlr-gamma-control-unstable-v1.xml',
|
2018-04-03 14:50:16 +00:00
|
|
|
'wlr-input-inhibitor-unstable-v1.xml',
|
2018-06-19 18:07:29 +00:00
|
|
|
'wlr-layer-shell-unstable-v1.xml',
|
|
|
|
'wlr-screencopy-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)
|
2018-08-24 07:35:02 +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@'],
|
|
|
|
)
|
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)
|
2018-08-24 07:35:02 +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@'],
|
|
|
|
)
|
2017-08-16 17:19:31 +00:00
|
|
|
endforeach
|
|
|
|
|
2018-08-24 07:35:02 +00:00
|
|
|
lib_wl_protos = static_library(
|
|
|
|
'wl_protos',
|
|
|
|
wl_protos_src + wl_protos_headers,
|
|
|
|
dependencies: wayland_client.partial_dependency(includes: true),
|
|
|
|
)
|
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,
|
|
|
|
)
|