mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 23:32:17 +00:00
20 lines
459 B
Meson
20 lines
459 B
Meson
dir = 'default'
|
|
src = [
|
|
'e',
|
|
'e_bindings'
|
|
]
|
|
|
|
##### boilerplate config build + install of icons/dirs
|
|
i = 0
|
|
foreach cd: src
|
|
custom_target(' '.join(['config_dist', dir, cd]),
|
|
input : cd + '.src',
|
|
output : cd + '.cfg',
|
|
command : [eet_cmd, '-e', '@OUTPUT@', 'config', '@INPUT@', '1'],
|
|
install : true,
|
|
install_dir : join_paths(dir_config, dir),
|
|
install_mode : 'rw-r--r--'
|
|
)
|
|
i += 1
|
|
endforeach
|