mirror of
https://github.com/TakeV-Lambda/Tooth.git
synced 2024-11-01 05:30:23 +00:00
34 lines
1.1 KiB
Meson
34 lines
1.1 KiB
Meson
icon_sizes = ['16', '24', '32', '48', '64', '128']
|
|
|
|
foreach i : icon_sizes
|
|
install_data(
|
|
join_paths('icons', i, meson.project_name() + '.svg'),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps')
|
|
)
|
|
install_data(
|
|
join_paths('icons', i, meson.project_name() + '.svg'),
|
|
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps')
|
|
)
|
|
endforeach
|
|
|
|
install_data(
|
|
meson.project_name() + '.gschema.xml',
|
|
install_dir: join_paths(get_option('prefix'), get_option('datadir'), 'glib-2.0', 'schemas')
|
|
)
|
|
|
|
i18n.merge_file(
|
|
input: meson.project_name() + '.desktop.in',
|
|
output: meson.project_name() + '.desktop',
|
|
po_dir: join_paths(meson.source_root(), 'po'),
|
|
type: 'desktop',
|
|
install: true,
|
|
install_dir: join_paths(get_option('datadir'), 'applications')
|
|
)
|
|
|
|
i18n.merge_file(
|
|
input: meson.project_name() + '.appdata.xml.in',
|
|
output: meson.project_name() + '.appdata.xml',
|
|
po_dir: join_paths(meson.source_root(), 'po'),
|
|
install: true,
|
|
install_dir: join_paths(get_option('datadir'), 'metainfo')
|
|
)
|