You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
459 B
19 lines
459 B
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
|
|
|