From 928c680d317647b4c304d3c60d5bf7b699c8b8ec Mon Sep 17 00:00:00 2001 From: Anne Onciulescu Date: Fri, 19 Jul 2024 12:18:32 +0300 Subject: [PATCH] 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 --- src/audio/module_adapter/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/audio/module_adapter/CMakeLists.txt b/src/audio/module_adapter/CMakeLists.txt index ef80b9050b5e..300296dc6205 100644 --- a/src/audio/module_adapter/CMakeLists.txt +++ b/src/audio/module_adapter/CMakeLists.txt @@ -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()