mirror of
https://github.com/donl/Lights-Up.git
synced 2026-05-25 22:06:26 -06:00
24 lines
No EOL
659 B
Meson
24 lines
No EOL
659 B
Meson
icon_sizes = ['16', '24', '32', '48', '64', '128']
|
|
|
|
|
|
foreach i : icon_sizes
|
|
install_data(
|
|
join_paths('Icons', i + 'x' + i, meson.project_name() + '.svg'),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps')
|
|
)
|
|
endforeach
|
|
|
|
install_data(
|
|
meson.project_name() + '.desktop',
|
|
install_dir: join_paths(get_option('datadir'), 'applications')
|
|
)
|
|
|
|
install_data(
|
|
meson.project_name() + '.appdata.xml',
|
|
install_dir: join_paths(get_option('datadir'), 'metainfo')
|
|
)
|
|
|
|
install_data(
|
|
meson.project_name() + '.gschema.xml',
|
|
install_dir: join_paths(get_option('datadir'), 'glib-2.0', 'schemas')
|
|
) |