Files
systemd/src/mountfsd/meson.build

29 lines
657 B
Meson

# SPDX-License-Identifier: LGPL-2.1-or-later
if conf.get('ENABLE_MOUNTFSD') != 1
subdir_done()
endif
systemd_mountwork_sources = files(
'mountwork.c',
)
systemd_mountfsd_sources = files(
'mountfsd.c',
'mountfsd-manager.c',
)
executables += [
libexec_template + {
'name' : 'systemd-mountfsd',
'sources' : systemd_mountfsd_sources,
},
libexec_template + {
'name' : 'systemd-mountwork',
'sources' : systemd_mountwork_sources,
},
]
install_data('io.systemd.mount-file-system.policy',
install_dir : polkitpolicydir)