tools/virtiofsd: convert to Meson

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2020-02-05 09:45:39 +01:00
parent 931049b46c
commit 3f99cf5710
10 changed files with 43 additions and 27 deletions

10
tools/meson.build Normal file
View file

@ -0,0 +1,10 @@
have_virtiofsd = (have_system and
have_tools and
'CONFIG_LINUX' in config_host and
'CONFIG_SECCOMP' in config_host and
'CONFIG_LIBCAP_NG' in config_host and
'CONFIG_VHOST_USER' in config_host)
if have_virtiofsd
subdir('virtiofsd')
endif