16bf7a3326
Since installation is not part of Makefiles anymore, Make need not know the directories anymore. Meson already knows them through built-in options, do everything using them instead of the config_host dictionary. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
20 lines
568 B
Meson
20 lines
568 B
Meson
executable('virtiofsd', files(
|
|
'buffer.c',
|
|
'fuse_opt.c',
|
|
'fuse_log.c',
|
|
'fuse_lowlevel.c',
|
|
'fuse_signals.c',
|
|
'fuse_virtio.c',
|
|
'helper.c',
|
|
'passthrough_ll.c',
|
|
'passthrough_seccomp.c'),
|
|
link_with: libvhost_user,
|
|
dependencies: [seccomp, qemuutil, libcap_ng],
|
|
install: true,
|
|
install_dir: get_option('libexecdir'))
|
|
|
|
configure_file(input: '50-qemu-virtiofsd.json.in',
|
|
output: '50-qemu-virtiofsd.json',
|
|
configuration: { 'libexecdir' : get_option('libexecdir') },
|
|
install_dir: qemu_datadir / 'vhost-user')
|