diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-02-05 09:45:39 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-08-21 06:30:09 -0400 |
commit | 3f99cf5710d77ce218116d1b6bb9682c466bbde1 (patch) | |
tree | b03f11959ec3ad2d2e206965c02c16d7f7e2d9a6 /tools/meson.build | |
parent | 931049b46cb58a499a36d8a1d0ac3f7b334e0876 (diff) |
tools/virtiofsd: convert to Meson
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools/meson.build')
-rw-r--r-- | tools/meson.build | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/meson.build b/tools/meson.build new file mode 100644 index 0000000000..513bd2ff4f --- /dev/null +++ b/tools/meson.build @@ -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 |