Make style more consistent

This commit is contained in:
Scott Anderson 2018-08-22 21:03:38 +12:00
parent 869dca1bce
commit a2bbf2c1f7
3 changed files with 20 additions and 13 deletions

View file

@ -76,8 +76,11 @@ foreach p : client_protocols
wl_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
lib_wl_protos = static_library(
'wl_protos',
wl_protos_src + wl_protos_headers,
dependencies: wayland_client.partial_dependency(includes: true),
)
wlr_protos = declare_dependency(
link_with: lib_wl_protos,