You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
598 B
20 lines
598 B
application_id = 'com.inferit.sphere-desktop-selector'
|
|
|
|
scalable_dir = 'hicolor' / 'scalable' / 'apps'
|
|
install_data(
|
|
scalable_dir / ('@0@.svg').format(application_id),
|
|
install_dir: get_option('datadir') / 'icons' / scalable_dir
|
|
)
|
|
|
|
symbolic_dir = 'hicolor' / 'symbolic' / 'apps'
|
|
install_data(
|
|
symbolic_dir / ('@0@-symbolic.svg').format(application_id),
|
|
install_dir: get_option('datadir') / 'icons' / symbolic_dir
|
|
)
|
|
|
|
icons_48_dir = 'hicolor' / '48x48' / 'apps'
|
|
install_data(
|
|
icons_48_dir / ('@0@.png').format(application_id),
|
|
install_dir: get_option('datadir') / 'icons' / icons_48_dir
|
|
)
|