mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-27 19:33:06 -04:00
Resolves: https://github.com/flatpak/flatpak/issues/2241 Signed-off-by: Simon McVittie <smcv@collabora.com>
30 lines
709 B
Meson
30 lines
709 B
Meson
# Copyright 2022 Collabora Ltd.
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
executable(
|
|
'flatpak-session-helper',
|
|
dependencies : [
|
|
base_deps,
|
|
threads_dep,
|
|
libglnx_dep,
|
|
libflatpak_common_base_dep,
|
|
],
|
|
install : true,
|
|
install_dir : get_option('libexecdir'),
|
|
sources : ['flatpak-session-helper.c'],
|
|
)
|
|
|
|
configure_file(
|
|
input : 'flatpak-session-helper.service.in',
|
|
output : 'flatpak-session-helper.service',
|
|
configuration : service_conf_data,
|
|
install_dir : get_option('systemduserunitdir'),
|
|
)
|
|
|
|
configure_file(
|
|
input : 'org.freedesktop.Flatpak.service.in',
|
|
output : 'org.freedesktop.Flatpak.service',
|
|
configuration : service_conf_data,
|
|
install_dir : dbus_service_dir,
|
|
)
|