Message ID | 20211209145601.331477-5-peter.griffin@linaro.org |
---|---|
State | New |
Headers | show |
Series | virtio: Add vhost-user based Video decode | expand |
Peter Griffin <peter.griffin@linaro.org> writes: > Signed-off-by: Peter Griffin <peter.griffin@linaro.org> > --- > tools/meson.build | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/tools/meson.build b/tools/meson.build > index 3e5a0abfa2..3314b5efc5 100644 > --- a/tools/meson.build > +++ b/tools/meson.build > @@ -24,3 +24,12 @@ endif > if have_virtiofsd > subdir('virtiofsd') > endif > + > +have_virtiovideo = (have_system and > + have_tools and > + 'CONFIG_LINUX' in config_host) Following the convention of cece116c939d219070b250338439c2d16f94e3da have_virtiovideo = (targetos == 'linux' and have_tools and 'CONFIG_VHOST_USER' in config_host) > + > +if have_virtiovideo > + subdir('vhost-user-video') > +endif > +
Hi Alex, Thanks for reviewing. On Tue, 11 Jan 2022, Alex Bennée wrote: > > Peter Griffin <peter.griffin@linaro.org> writes: > > > Signed-off-by: Peter Griffin <peter.griffin@linaro.org> > > --- > > tools/meson.build | 9 +++++++++ > > 1 file changed, 9 insertions(+) > > > > diff --git a/tools/meson.build b/tools/meson.build > > index 3e5a0abfa2..3314b5efc5 100644 > > --- a/tools/meson.build > > +++ b/tools/meson.build > > @@ -24,3 +24,12 @@ endif > > if have_virtiofsd > > subdir('virtiofsd') > > endif > > + > > +have_virtiovideo = (have_system and > > + have_tools and > > + 'CONFIG_LINUX' in config_host) > > Following the convention of cece116c939d219070b250338439c2d16f94e3da > > have_virtiovideo = (targetos == 'linux' and > have_tools and > 'CONFIG_VHOST_USER' in config_host) > Will fix in v2 regards, Peter. > > + > > +if have_virtiovideo > > + subdir('vhost-user-video') > > +endif > > + > > > -- > Alex Bennée
diff --git a/tools/meson.build b/tools/meson.build index 3e5a0abfa2..3314b5efc5 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -24,3 +24,12 @@ endif if have_virtiofsd subdir('virtiofsd') endif + +have_virtiovideo = (have_system and + have_tools and + 'CONFIG_LINUX' in config_host) + +if have_virtiovideo + subdir('vhost-user-video') +endif +
Signed-off-by: Peter Griffin <peter.griffin@linaro.org> --- tools/meson.build | 9 +++++++++ 1 file changed, 9 insertions(+)