mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
build: use dicts instead of get_variable
Closes: https://github.com/swaywm/wlroots/issues/1963
This commit is contained in:
parent
0b882475ad
commit
ab4f642153
3 changed files with 10 additions and 7 deletions
|
|
@ -46,6 +46,9 @@ protocols = {
|
|||
'wlr-virtual-pointer-unstable-v1': 'wlr-virtual-pointer-unstable-v1.xml',
|
||||
}
|
||||
|
||||
protocols_code = {}
|
||||
protocols_server_header = {}
|
||||
protocols_client_header = {}
|
||||
foreach name, path : protocols
|
||||
code = custom_target(
|
||||
name.underscorify() + '_c',
|
||||
|
|
@ -71,7 +74,7 @@ foreach name, path : protocols
|
|||
build_by_default: false,
|
||||
)
|
||||
|
||||
set_variable(name.underscorify() + '_c', code)
|
||||
set_variable(name.underscorify() + '_server_h', server_header)
|
||||
set_variable(name.underscorify() + '_client_h', client_header)
|
||||
protocols_code += { name: code }
|
||||
protocols_server_header += { name: server_header }
|
||||
protocols_client_header += { name: client_header }
|
||||
endforeach
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue