xref: /openbmc/qemu/fsdev/meson.build (revision 650b5d548e84b284ae3942ab6b4831ed263dc261)
1have_virtfs_proxy_helper = have_tools and libattr.found() and libcap_ng.found() and 'CONFIG_VIRTFS' in config_host
2if have_virtfs_proxy_helper
3  executable('virtfs-proxy-helper',
4             files('virtfs-proxy-helper.c', '9p-marshal.c', '9p-iov-marshal.c'),
5             dependencies: [qemuutil, libattr, libcap_ng],
6             install: true,
7             install_dir: get_option('libexecdir'))
8endif
9