18 lines
474 B
Meson
18 lines
474 B
Meson
apps_dir = get_option('datadir') / 'icons' / 'hicolor' / '@0@' / 'apps'
|
|
install_data(f'@app_id@.svg', install_dir: apps_dir.format('scalable'))
|
|
install_data(f'@app_id@-symbolic.svg', install_dir: apps_dir.format('symbolic'))
|
|
|
|
resource = configure_file(
|
|
input: 'icons.gresource.xml.in',
|
|
output: '@BASENAME@',
|
|
configuration: conf,
|
|
)
|
|
|
|
gnome.compile_resources(
|
|
'icons',
|
|
resource,
|
|
gresource_bundle: true,
|
|
install: true,
|
|
install_dir: pkgdatadir,
|
|
)
|