svg icons should be installed to /usr/share/icons/hicolor/scalable/apps/, not /usr/share/icons/hicolor/48x48/@2/ or similar.
|
icon_sizes = ['48', '64'] |
|
|
|
foreach i : icon_sizes |
|
install_data( |
|
join_paths('icons', i, meson.project_name() + '.svg'), |
|
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps') |
|
) |
|
install_data( |
|
join_paths('icons', i, meson.project_name() + '.svg'), |
|
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, '@2', 'apps') |
|
) |
|
endforeach |
svgicons should be installed to/usr/share/icons/hicolor/scalable/apps/, not/usr/share/icons/hicolor/48x48/@2/or similar.Notes-up/data/meson.build
Lines 1 to 12 in 310ce5c