diff options
author | Wu Xiaotian <[email protected]> | 2019-05-11 00:42:21 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-05-21 09:16:57 +0200 |
commit | d98d60a74976e544c2a844f41dd00db9d9ac999a (patch) | |
tree | 8de0408116be4acb09c0769132c25c4c2c71aac2 /data/icons | |
parent | 2beed2049f2822066eb2c571aa289f7a2a9f2dc5 (diff) | |
download | mozo-d98d60a74976e544c2a844f41dd00db9d9ac999a.tar.bz2 mozo-d98d60a74976e544c2a844f41dd00db9d9ac999a.tar.xz |
use meson to build
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 + |