PIKApp/icons/Color/16/meson.build

18 lines
382 B
Meson
Raw Permalink Normal View History

2023-09-26 00:35:21 +02:00
icons_dir = size + 'x' + size
foreach icon : source_icons
icon_name = icon + '.png'
input_path = '../scalable/' + icon + '.svg'
custom_target(icon_name,
input : [ input_path ],
output: [ icon_name ],
command: [
colorsvg2png, '@INPUT@', '@OUTPUT@', size,
],
install: true,
install_dir: pikaiconsdir / theme / icons_dir / 'apps',
)
endforeach