gstreamer/ext/shout2/meson.build
Nirbheek Chauhan 8f807477eb meson: Add feature options for all plugins
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
2018-07-27 18:42:54 +05:30

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