xref: /openbmc/qemu/fsdev/meson.build (revision 17ef2af6b67f29bb5c5c687f07216544830f167a)
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