decoder/plugins/meson.build: add missing dependency to libid3tag
This commit is contained in:
parent
d9bbe39f48
commit
a888b3a707
@ -1,6 +1,7 @@
|
|||||||
decoder_plugins_sources = [
|
decoder_plugins_sources = [
|
||||||
'PcmDecoderPlugin.cxx',
|
'PcmDecoderPlugin.cxx',
|
||||||
]
|
]
|
||||||
|
decoder_plugins_dependencies = []
|
||||||
|
|
||||||
if get_option('dsd')
|
if get_option('dsd')
|
||||||
decoder_plugins_sources += [
|
decoder_plugins_sources += [
|
||||||
@ -8,6 +9,7 @@ if get_option('dsd')
|
|||||||
'DsfDecoderPlugin.cxx',
|
'DsfDecoderPlugin.cxx',
|
||||||
'DsdLib.cxx',
|
'DsdLib.cxx',
|
||||||
]
|
]
|
||||||
|
decoder_plugins_dependencies += libid3tag_dep
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ffmpeg_dep.found()
|
if ffmpeg_dep.found()
|
||||||
@ -90,6 +92,7 @@ libmad_dep = c_compiler.find_library('mad', required: get_option('mad'))
|
|||||||
decoder_features.set('ENABLE_MAD', libmad_dep.found())
|
decoder_features.set('ENABLE_MAD', libmad_dep.found())
|
||||||
if libmad_dep.found()
|
if libmad_dep.found()
|
||||||
decoder_plugins_sources += 'MadDecoderPlugin.cxx'
|
decoder_plugins_sources += 'MadDecoderPlugin.cxx'
|
||||||
|
decoder_plugins_dependencies += libid3tag_dep
|
||||||
endif
|
endif
|
||||||
|
|
||||||
libmikmod_dep = dependency('libmikmod', version: '>= 3.2', required: get_option('mikmod'))
|
libmikmod_dep = dependency('libmikmod', version: '>= 3.2', required: get_option('mikmod'))
|
||||||
@ -166,6 +169,7 @@ decoder_plugins = static_library(
|
|||||||
decoder_plugins_sources,
|
decoder_plugins_sources,
|
||||||
include_directories: inc,
|
include_directories: inc,
|
||||||
dependencies: [
|
dependencies: [
|
||||||
|
decoder_plugins_dependencies,
|
||||||
adplug_dep,
|
adplug_dep,
|
||||||
ffmpeg_dep,
|
ffmpeg_dep,
|
||||||
flac_dep,
|
flac_dep,
|
||||||
|
@ -468,6 +468,7 @@ if libid3tag_dep.found()
|
|||||||
tag_dep,
|
tag_dep,
|
||||||
input_glue_dep,
|
input_glue_dep,
|
||||||
archive_glue_dep,
|
archive_glue_dep,
|
||||||
|
libid3tag_dep,
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user