forked from mirror/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
575 B
Meson
19 lines
575 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'),
|
|
dependencies: [seccomp, qemuutil, libcap_ng, vhost_user],
|
|
install: true,
|
|
install_dir: get_option('libexecdir'))
|
|
|
|
configure_file(input: '50-qemu-virtiofsd.json.in',
|
|
output: '50-qemu-virtiofsd.json',
|
|
configuration: { 'libexecdir' : get_option('prefix') / get_option('libexecdir') },
|
|
install_dir: qemu_datadir / 'vhost-user')
|