PIKApp/icons/Symbolic/12/meson.build

17 lines
429 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 + '-symbolic.symbolic.png'
input_path = '../scalable/' + icon + '-symbolic.svg'
custom_target(icon_name,
input : [ input_path ],
output: [ icon_name ],
command: [
gtk_encode_symbolic_svg, '-o', '@OUTDIR@', '@INPUT@', icons_dir
],
install: true,
install_dir: pikaiconsdir / theme / icons_dir / 'apps',
)
endforeach