2017-08-11 15:37:09 +02:00
|
|
|
wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir')
|
|
|
|
|
|
|
|
wayland_scanner = find_program('wayland-scanner')
|
|
|
|
|
|
|
|
wayland_scanner_server = generator(wayland_scanner,
|
2017-08-13 14:26:32 +02:00
|
|
|
output: '@BASENAME@-protocol.h',
|
|
|
|
arguments: ['server-header', '@INPUT@', '@OUTPUT@'])
|
2017-08-11 15:37:09 +02:00
|
|
|
|
|
|
|
wayland_scanner_code = generator(wayland_scanner,
|
2017-08-13 14:26:32 +02:00
|
|
|
output: '@BASENAME@-protocol.c',
|
|
|
|
arguments: ['code', '@INPUT@', '@OUTPUT@'])
|
2017-08-11 15:37:09 +02:00
|
|
|
|
|
|
|
protocols = [
|
2017-08-13 14:26:32 +02:00
|
|
|
[ wl_protocol_dir, 'unstable/xdg-shell/xdg-shell-unstable-v6.xml' ]
|
2017-08-11 15:37:09 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
wl_protos_src = []
|
|
|
|
wl_protos_headers = []
|
|
|
|
|
|
|
|
foreach p : protocols
|
2017-08-13 14:26:32 +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
|
|
|
|
|
|
|
|
lib_wl_protos = static_library('wl_protos', wl_protos_src + wl_protos_headers)
|
|
|
|
wlr_protos = declare_dependency(
|
2017-08-13 14:26:32 +02:00
|
|
|
link_with: lib_wl_protos,
|
|
|
|
sources: wl_protos_headers)
|