gnome-control-center/panels/system/remote-desktop/meson.build
Sam Hewitt b511f9a767 system: Reorganized symbolic icon assets
- moved all symbolic icon assets into a top-level folder for the panel
- added new asset for secure shell panel
- updated the gresource
2024-04-29 11:01:18 -02:30

25 lines
630 B
Meson

gnome_remote_desktop = 'org.gnome.RemoteDesktop'
sources += gnome.gdbus_codegen(
gnome_remote_desktop,
gnome_remote_desktop + '.xml',
interface_prefix: 'org.gnome.',
namespace: 'Gsd'
)
polkit_conf = configuration_data()
polkit_conf.set('libexecdir', control_center_libexecdir)
polkit = 'org.gnome.controlcenter.remote-session-helper.policy'
polkit_in = configure_file(
input: polkit + '.in.in',
output: polkit + '.in',
configuration: polkit_conf
)
i18n.merge_file(
input: polkit_in,
output: polkit,
po_dir: po_dir,
install: true,
install_dir: join_paths(control_center_datadir, 'polkit-1', 'actions')
)