diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-07-15 15:04:49 +0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-08-21 06:30:13 -0400 |
commit | ec0d5893da20a5f35dcbd901d98be24346bf9cc2 (patch) | |
tree | a3054fbb1ede92b8aa4325c1a499c22bf6c4e921 /fsdev/meson.build | |
parent | 157e7b13b93e7fc5440093486932a69ef0ecfdee (diff) | |
download | qemu-ec0d5893da20a5f35dcbd901d98be24346bf9cc2.zip qemu-ec0d5893da20a5f35dcbd901d98be24346bf9cc2.tar.gz qemu-ec0d5893da20a5f35dcbd901d98be24346bf9cc2.tar.bz2 |
meson: add virtfs-proxy-helper
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'fsdev/meson.build')
-rw-r--r-- | fsdev/meson.build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fsdev/meson.build b/fsdev/meson.build new file mode 100644 index 0000000..30e2319 --- /dev/null +++ b/fsdev/meson.build @@ -0,0 +1,8 @@ +have_virtfs_proxy_helper = have_tools and libattr.found() and libcap_ng.found() and 'CONFIG_VIRTFS' in config_host +if have_virtfs_proxy_helper + executable('virtfs-proxy-helper', + files('virtfs-proxy-helper.c', '9p-marshal.c', '9p-iov-marshal.c'), + dependencies: [qemuutil, libattr, libcap_ng], + install: true, + install_dir: get_option('libexecdir')) +endif |