Rest of the conversion to meson/ninja missed in the first push. Thanks again Claud for the assist.

This commit is contained in:
Storm Dragon
2025-08-11 13:27:22 -04:00
parent 8bcc85f82c
commit 02fa1e4356
7 changed files with 200 additions and 114 deletions

53
icons/meson.build Normal file
View File

@@ -0,0 +1,53 @@
# Install icons in hicolor icon theme locations
install_data(
'cthulhu-16x16.png',
rename: 'cthulhu.png',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / '16x16' / 'apps'
)
install_data(
'cthulhu-22x22.png',
rename: 'cthulhu.png',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / '22x22' / 'apps'
)
install_data(
'cthulhu-24x24.png',
rename: 'cthulhu.png',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / '24x24' / 'apps'
)
install_data(
'cthulhu-32x32.png',
rename: 'cthulhu.png',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / '32x32' / 'apps'
)
install_data(
'cthulhu-48x48.png',
rename: 'cthulhu.png',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / '48x48' / 'apps'
)
install_data(
'cthulhu-256x256.png',
rename: 'cthulhu.png',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / '256x256' / 'apps'
)
install_data(
'cthulhu-scalable.svg',
rename: 'cthulhu.svg',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / 'scalable' / 'apps'
)
install_data(
'cthulhu-symbolic.svg',
install_dir: get_option('datadir') / 'icons' / 'hicolor' / 'symbolic' / 'apps'
)
# Additional icons
install_data(
'cthulhu-splash.svg',
install_dir: get_option('datadir') / 'cthulhu' / 'icons'
)