build: use dicts instead of get_variable

Closes: https://github.com/swaywm/wlroots/issues/1963
This commit is contained in:
Simon Ser 2020-04-21 15:19:24 +02:00 committed by Drew DeVault
parent 0b882475ad
commit ab4f642153
3 changed files with 10 additions and 7 deletions

View file

@ -167,7 +167,7 @@ clients = {
foreach name, info : compositors
extra_src = []
foreach p : info.get('proto', [])
extra_src += get_variable(p.underscorify() + '_server_h')
extra_src += protocols_server_header[p]
endforeach
executable(
@ -182,8 +182,8 @@ endforeach
foreach name, info : clients
extra_src = []
foreach p : info.get('proto')
extra_src += get_variable(p.underscorify() + '_c')
extra_src += get_variable(p.underscorify() + '_client_h')
extra_src += protocols_code[p]
extra_src += protocols_client_header[p]
endforeach
executable(