mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
8f807477eb
Checks for GL, Qt5, and C++ are still automagic. FIXMEs have been added for these so they can be fixed later. https://bugzilla.gnome.org/show_bug.cgi?id=795107
15 lines
474 B
Meson
15 lines
474 B
Meson
shout2_sources = ['gstshout2.c']
|
|
|
|
shout2_dep = dependency('shout', version : '>= 2.0', required : get_option('shout2'))
|
|
|
|
if shout2_dep.found()
|
|
gstshout2 = library('gstshout2',
|
|
shout2_sources,
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstbase_dep, shout2_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstshout2, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|