ab4c0996f8
When cross-compiling, by default qemu_datadir is 'c:\Program Files\QEMU', which is not recognized as being an absolute path, and meson will end up adding the prefix again. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20200826110419.528931-6-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
20 lines
536 B
Meson
20 lines
536 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: config_host,
|
|
install_dir: qemu_datadir / 'vhost-user')
|