decoder/plugins/meson.build: add missing dependency to libid3tag

This commit is contained in:
Max Kellermann 2023-12-22 18:01:29 +01:00
parent cf9a2eb508
commit 083d39ea80
2 changed files with 5 additions and 0 deletions
src/decoder/plugins
test

@ -1,6 +1,7 @@
decoder_plugins_sources = [
'PcmDecoderPlugin.cxx',
]
decoder_plugins_dependencies = []
if get_option('dsd')
decoder_plugins_sources += [
@ -9,6 +10,7 @@ if get_option('dsd')
'DsfDecoderPlugin.cxx',
'DsdLib.cxx',
]
decoder_plugins_dependencies += libid3tag_dep
endif
if ffmpeg_dep.found()
@ -91,6 +93,7 @@ libmad_dep = c_compiler.find_library('mad', required: get_option('mad'))
decoder_features.set('ENABLE_MAD', libmad_dep.found())
if libmad_dep.found()
decoder_plugins_sources += 'MadDecoderPlugin.cxx'
decoder_plugins_dependencies += libid3tag_dep
endif
libmikmod_dep = dependency('libmikmod', version: '>= 3.2', required: get_option('mikmod'))
@ -188,6 +191,7 @@ decoder_plugins = static_library(
decoder_plugins_sources,
include_directories: inc,
dependencies: [
decoder_plugins_dependencies,
adplug_dep,
ffmpeg_dep,
flac_dep,

@ -483,6 +483,7 @@ if libid3tag_dep.found()
tag_dep,
input_glue_dep,
archive_glue_dep,
libid3tag_dep,
],
)
endif