mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
12 lines
351 B
Meson
12 lines
351 B
Meson
mpg123_dep = dependency('libmpg123', version : '>= 1.3', required : false)
|
|
|
|
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,
|
|
)
|
|
endif
|