efl/data/elementary/colors/meson.build

19 lines
445 B
Meson
Raw Normal View History

pals = [
'default',
'light',
2021-11-06 16:20:51 -07:00
'mauve-sunset',
2021-11-16 13:26:34 -08:00
'candy-mint',
2021-11-16 14:14:30 -08:00
'ebony-brass',
'white-pill'
]
foreach p: pals
custom_target('colors_' + p + '.ecl',
input: p + '.src',
output: p + '.pal',
command: [eet_bin, '-e', '@OUTPUT@', 'palette', '@INPUT@', '1'],
install: true,
install_dir: join_paths(dir_data, 'elementary', 'colors'),
)
endforeach