diff options
Diffstat (limited to 'data/icons')
-rw-r--r-- | data/icons/meson.build | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/data/icons/meson.build b/data/icons/meson.build new file mode 100644 index 0000000..412ef9a --- /dev/null +++ b/data/icons/meson.build @@ -0,0 +1,19 @@ +icon_files = { + '16x16': 'hicolor_apps_16x16_mozo.png', + '22x22': 'hicolor_apps_22x22_mozo.png', + '24x24': 'hicolor_apps_24x24_mozo.png', + '32x32': 'hicolor_apps_32x32_mozo.png', + '48x48': 'hicolor_apps_48x48_mozo.png', + '256x256': 'hicolor_apps_256x256_mozo.png', +} + +icondir = join_paths(datadir, 'icons', 'hicolor') + +# Remember to call gtk-update-icon-cache when installing / uninstalling. +foreach size, file : icon_files + install_data(file, + install_dir: join_paths(icondir, size, 'apps'), + rename: '@[email protected]'.format(meson.project_name()), + ) +endforeach + |