diff options
author | Simon Ser <contact@emersion.fr> | 2020-04-21 15:19:24 +0200 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-04-21 15:26:45 +0200 |
commit | ab4f6421538a5fc4d539f638018aaf8b35a1f549 (patch) | |
tree | 92dd330265237d73e8775bf882af185daf9e6d46 /protocol | |
parent | 0b882475adb07cdc96fe4a585819b28b102a2b81 (diff) |
build: use dicts instead of get_variable
Closes: https://github.com/swaywm/wlroots/issues/1963
Diffstat (limited to 'protocol')
-rw-r--r-- | protocol/meson.build | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/protocol/meson.build b/protocol/meson.build index 6275103a..1b90b4f0 100644 --- a/protocol/meson.build +++ b/protocol/meson.build @@ -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 |