blob: c134ba633f07f12d5433fd7ce0c041b17b127735 [file] [log] [blame]
Paolo Bonzini3f99cf52020-02-05 09:45:39 +01001executable('virtiofsd', files(
2 'buffer.c',
3 'fuse_opt.c',
4 'fuse_log.c',
5 'fuse_lowlevel.c',
6 'fuse_signals.c',
7 'fuse_virtio.c',
8 'helper.c',
9 'passthrough_ll.c',
10 'passthrough_seccomp.c'),
Marc-André Lureau0df750e2020-11-25 14:06:37 +040011 dependencies: [seccomp, qemuutil, libcap_ng, vhost_user],
Paolo Bonzini3f99cf52020-02-05 09:45:39 +010012 install: true,
13 install_dir: get_option('libexecdir'))
14
15configure_file(input: '50-qemu-virtiofsd.json.in',
16 output: '50-qemu-virtiofsd.json',
Marc Hartmayercd57dea2020-11-03 12:23:33 +010017 configuration: { 'libexecdir' : get_option('prefix') / get_option('libexecdir') },
Marc-André Lureauab4c0992020-08-26 15:04:16 +040018 install_dir: qemu_datadir / 'vhost-user')