2017-08-11 15:37:09 +02:00
|
|
|
wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir')
|
|
|
|
|
2018-08-24 09:35:02 +02: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 07:29:43 +02:00
|
|
|
else
|
2018-08-24 09:35:02 +02:00
|
|
|
wayland_scanner = find_program('wayland-scanner', native: true)
|
2018-08-22 07:29:43 +02:00
|
|
|
endif
|
2017-08-11 15:37:09 +02:00
|
|
|
|
|
|
|
protocols = [
|
2018-09-29 15:38:06 +02:00
|
|
|
[wl_protocol_dir, 'stable/presentation-time/presentation-time.xml'],
|
2018-02-14 12:40:13 +01:00
|
|
|
[wl_protocol_dir, 'stable/xdg-shell/xdg-shell.xml'],
|
2019-01-06 12:08:45 +01:00
|
|
|
[wl_protocol_dir, 'unstable/fullscreen-shell/fullscreen-shell-unstable-v1.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'],
|
2019-01-06 12:08:45 +01:00
|
|
|
[wl_protocol_dir, 'unstable/pointer-constraints/pointer-constraints-unstable-v1.xml'],
|
2019-01-25 23:51:38 +01:00
|
|
|
[wl_protocol_dir, 'unstable/pointer-gestures/pointer-gestures-unstable-v1.xml'],
|
2019-01-24 12:04:41 +01:00
|
|
|
[wl_protocol_dir, 'unstable/primary-selection/primary-selection-unstable-v1.xml'],
|
2019-01-06 12:08:45 +01:00
|
|
|
[wl_protocol_dir, 'unstable/relative-pointer/relative-pointer-unstable-v1.xml'],
|
2018-04-11 16:17:28 +02:00
|
|
|
[wl_protocol_dir, 'unstable/tablet/tablet-unstable-v2.xml'],
|
2019-01-24 12:08:26 +01:00
|
|
|
[wl_protocol_dir, 'unstable/text-input/text-input-unstable-v3.xml'],
|
2018-06-10 12:15:26 +02: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 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',
|
2018-08-23 11:38:39 +02:00
|
|
|
'input-method-unstable-v2.xml',
|
2017-09-07 17:31:30 +02:00
|
|
|
'screenshooter.xml',
|
2017-10-24 21:56:18 +02:00
|
|
|
'server-decoration.xml',
|
2018-05-24 19:46:54 +02:00
|
|
|
'virtual-keyboard-unstable-v1.xml',
|
2018-12-07 15:50:51 +01:00
|
|
|
'wlr-data-control-unstable-v1.xml',
|
2018-05-22 18:38:05 +02:00
|
|
|
'wlr-export-dmabuf-unstable-v1.xml',
|
2018-08-25 21:27:11 +02:00
|
|
|
'wlr-foreign-toplevel-management-unstable-v1.xml',
|
2019-01-06 12:08:45 +01:00
|
|
|
'wlr-gamma-control-unstable-v1.xml',
|
2018-04-03 16:50:16 +02:00
|
|
|
'wlr-input-inhibitor-unstable-v1.xml',
|
2018-05-22 18:38:05 +02:00
|
|
|
'wlr-layer-shell-unstable-v1.xml',
|
2018-06-19 20:07:29 +02:00
|
|
|
'wlr-screencopy-unstable-v1.xml',
|
2017-08-11 15:37:09 +02:00
|
|
|
]
|
|
|
|
|
2017-08-16 19:19:31 +02:00
|
|
|
client_protocols = [
|
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-08-10 18:19:16 +02:00
|
|
|
[wl_protocol_dir, 'unstable/pointer-constraints/pointer-constraints-unstable-v1.xml'],
|
2018-09-28 01:13:52 +02:00
|
|
|
[wl_protocol_dir, 'unstable/relative-pointer/relative-pointer-unstable-v1.xml'],
|
2019-01-24 12:08:26 +01:00
|
|
|
[wl_protocol_dir, 'unstable/text-input/text-input-unstable-v3.xml'],
|
2019-01-06 12:08:45 +01: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 21:29:23 +01:00
|
|
|
'idle.xml',
|
2018-08-23 11:38:39 +02:00
|
|
|
'input-method-unstable-v2.xml',
|
2017-09-08 18:09:09 +02:00
|
|
|
'screenshooter.xml',
|
2018-05-27 05:03:29 +02:00
|
|
|
'wlr-export-dmabuf-unstable-v1.xml',
|
2018-08-25 21:27:11 +02:00
|
|
|
'wlr-foreign-toplevel-management-unstable-v1.xml',
|
2019-01-06 12:08:45 +01:00
|
|
|
'wlr-gamma-control-unstable-v1.xml',
|
2018-04-03 16:50:16 +02:00
|
|
|
'wlr-input-inhibitor-unstable-v1.xml',
|
2018-06-19 20:07:29 +02:00
|
|
|
'wlr-layer-shell-unstable-v1.xml',
|
|
|
|
'wlr-screencopy-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)
|
2018-08-24 09:35:02 +02: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 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)
|
2018-08-24 09:35:02 +02: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 19:19:31 +02:00
|
|
|
endforeach
|
|
|
|
|
2018-08-24 09:35:02 +02:00
|
|
|
lib_wl_protos = static_library(
|
|
|
|
'wl_protos',
|
|
|
|
wl_protos_src + wl_protos_headers,
|
2018-09-10 12:12:13 +02:00
|
|
|
dependencies: wayland_client.partial_dependency(compile_args: true),
|
2018-08-24 09:35:02 +02:00
|
|
|
)
|
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,
|
|
|
|
)
|