mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +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
13 lines
443 B
Meson
13 lines
443 B
Meson
mpg123_dep = dependency('libmpg123', version : '>= 1.3', required : get_option('mpg123'))
|
|
|
|
if mpg123_dep.found()
|
|
gstmpg123 = library('gstmpg123',
|
|
'gstmpg123audiodec.c',
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstaudio_dep, mpg123_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstmpg123, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|