src/audio/module_adapter/CMakeLists.txt: add MP3_ENC

The CADENCE_CODEC_MP3_ENC option was present in Kconfig
but missing from CMakeLists.txt.

Signed-off-by: Anne Onciulescu <anne.onciulescu@gmail.com>
This commit is contained in:
Anne Onciulescu 2024-07-19 12:18:32 +03:00 committed by Daniel Baluta
parent 6ca76d5de1
commit 47368160da
1 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,10 @@ if(NOT CONFIG_COMP_MODULE_SHARED_LIBRARY_BUILD)
sof_add_static_library(xa_mp3_dec ${CONFIG_CADENCE_CODEC_MP3_DEC_LIB})
endif()
if(CONFIG_CADENCE_CODEC_MP3_ENC)
sof_add_static_library(xa_mp3_enc ${CONFIG_CADENCE_CODEC_MP3_ENC_LIB})
endif()
if(CONFIG_CADENCE_CODEC_SBC_DEC)
sof_add_static_library(xa_sbc_dec ${CONFIG_CADENCE_CODEC_SBC_DEC_LIB})
endif()