Add initial layer shell skeleton

This commit is contained in:
Drew DeVault 2018-03-28 15:47:22 -04:00
parent 9070950eec
commit 0c8a64942e
9 changed files with 192 additions and 16 deletions

View file

@ -14,24 +14,57 @@ wayland_scanner_client = generator(
arguments: ['client-header', '@INPUT@', '@OUTPUT@'],
)
protocols = [
wayland_scanner_server = generator(
wayland_scanner,
output: '@BASENAME@-protocol.h',
arguments: ['server-header', '@INPUT@', '@OUTPUT@'],
)
client_protocols = [
[wl_protocol_dir, 'stable/xdg-shell/xdg-shell.xml'],
['wlr-layer-shell-unstable-v1.xml']
]
wl_protos_src = []
wl_protos_headers = []
server_protocols = [
['wlr-layer-shell-unstable-v1.xml']
]
foreach p : protocols
client_protos_src = []
client_protos_headers = []
server_protos_src = []
server_protos_headers = []
foreach p : client_protocols
xml = join_paths(p)
wl_protos_src += wayland_scanner_code.process(xml)
wl_protos_headers += wayland_scanner_client.process(xml)
client_protos_src += wayland_scanner_code.process(xml)
client_protos_headers += wayland_scanner_client.process(xml)
endforeach
lib_wl_protos = static_library('wl_protos', wl_protos_src + wl_protos_headers,
dependencies: [wayland_client]) # for the include directory
foreach p : server_protocols
xml = join_paths(p)
server_protos_src += wayland_scanner_code.process(xml)
server_protos_headers += wayland_scanner_server.process(xml)
endforeach
sway_protos = declare_dependency(
link_with: lib_wl_protos,
sources: wl_protos_headers,
lib_client_protos = static_library(
'client_protos',
client_protos_src + client_protos_headers,
dependencies: [wayland_client]
) # for the include directory
client_protos = declare_dependency(
link_with: lib_client_protos,
sources: client_protos_headers,
)
lib_server_protos = static_library(
'server_protos',
server_protos_src + server_protos_headers,
dependencies: [wayland_client]
) # for the include directory
server_protos = declare_dependency(
link_with: lib_server_protos,
sources: server_protos_headers,
)