mirror of
https://github.com/13hannes11/toolbx-tuner.git
synced 2024-09-03 23:21:00 +02:00
14 lines
478 B
Meson
14 lines
478 B
Meson
application_id = 'org.kuchelmeister.toolbxtuner'
|
|
|
|
scalable_dir = join_paths('hicolor', 'scalable', 'apps')
|
|
install_data(
|
|
join_paths(scalable_dir, ('@0@.svg').format(application_id)),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', scalable_dir)
|
|
)
|
|
|
|
symbolic_dir = join_paths('hicolor', 'symbolic', 'apps')
|
|
install_data(
|
|
join_paths(symbolic_dir, ('@0@-symbolic.svg').format(application_id)),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', symbolic_dir)
|
|
)
|