b92ddc0d39
Another small step towards making the extensions app code self-contained ... https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1081
30 lines
678 B
Meson
30 lines
678 B
Meson
gnome.compile_resources(
|
|
app_id + '.data',
|
|
app_id + '.data.gresource.xml',
|
|
gresource_bundle: true,
|
|
install: true,
|
|
install_dir: pkgdatadir
|
|
)
|
|
|
|
desktopconf = configuration_data()
|
|
# We substitute in bindir so it works as an autostart
|
|
# file when built in a non-system prefix
|
|
desktopconf.set('bindir', bindir)
|
|
desktopconf.set('app_id', app_id)
|
|
desktopconf.set('prgname', prgname)
|
|
|
|
i18n.merge_file('desktop',
|
|
input: configure_file(
|
|
input: app_id + '.desktop.in.in',
|
|
output: app_id + '.desktop.in',
|
|
configuration: desktopconf
|
|
),
|
|
output: app_id + '.desktop',
|
|
po_dir: po_dir,
|
|
install: true,
|
|
install_dir: desktopdir,
|
|
type: 'desktop'
|
|
)
|
|
|
|
subdir('icons')
|