meson: Add some messages when selecting libsoup

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2082>
This commit is contained in:
Nirbheek Chauhan 2022-03-26 01:02:02 +05:30 committed by Tim-Philipp Müller
parent 45ce19dd2d
commit 69936ad852

View file

@ -35,9 +35,11 @@ if default_library in ['static', 'both']
if libsoup3_dep.found()
static_deps += libsoup3_dep
static_args += '-DSTATIC_SOUP=3'
message('soup plugin: using libsoup-3.0 for static build')
elif libsoup2_dep.found()
static_deps += libsoup2_dep
static_args += '-DSTATIC_SOUP=2'
message('soup plugin: using libsoup-2.4 for static build')
endif
endif