mirror of
https://gitlab.cvh-server.de/skrause/flashcards.git
synced 2025-12-12 09:01:37 +01:00
14 lines
406 B
Meson
14 lines
406 B
Meson
application_id = 'li.sopht.Flashcards'
|
|
|
|
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
|
|
)
|