mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
20 lines
589 B
Meson
20 lines
589 B
Meson
shout2_sources = ['gstshout2.c']
|
|
|
|
shout2_dep = dependency('shout', version : '>= 2.4.2', required : get_option('shout2'))
|
|
|
|
if shout2_dep.found()
|
|
shout2_extra_args = []
|
|
if shout2_dep.version().version_compare('>= 2.4.6')
|
|
shout2_extra_args += ['-DHAVE_SHOUT_2_4_6_OR_NEWER']
|
|
endif
|
|
|
|
gstshout2 = library('gstshout2',
|
|
shout2_sources,
|
|
c_args : gst_plugins_good_args + shout2_extra_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstbase_dep, shout2_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstshout2]
|
|
endif
|