mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
29 lines
657 B
Meson
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)
|