mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
13 lines
407 B
Meson
13 lines
407 B
Meson
chromaprint_dep = dependency('libchromaprint', required : get_option('chromaprint'))
|
|
|
|
if chromaprint_dep.found()
|
|
gstchromaprint = library('gstchromaprint',
|
|
'gstchromaprint.c',
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstaudio_dep, chromaprint_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstchromaprint]
|
|
endif
|