diff options
Diffstat (limited to 'data/icons')
-rw-r--r-- | data/icons/meson.build | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/data/icons/meson.build b/data/icons/meson.build new file mode 100644 index 0000000..54db0e3 --- /dev/null +++ b/data/icons/meson.build @@ -0,0 +1,20 @@ +apps_path = [ + '16x16', + '22x22', + '24x24', + '32x32', + '48x48', +] + +foreach app: apps_path + install_data( + join_paths(app, 'mate-notification-properties.png'), + install_dir: join_paths(mm_iconsdir, 'hicolor', app, 'apps') + ) +endforeach + +install_data( + join_paths('scalable','mate-notification-properties.svg'), + install_dir: join_paths(mm_iconsdir, 'hicolor', 'scalable', 'apps') +) + |