22 lines
341 B
CMake
Raw Permalink Normal View History

2025-05-08 18:01:52 +08:00
set(incs include)
set(srcs "")
if (CONFIG_BEKEN_WANSON_ASR)
list(APPEND srcs
src/bk_wanson_asr.c
)
endif()
if (CONFIG_BEKEN_WANSON_ASR_TEST)
list(APPEND srcs
src/bk_wanson_asr_test.c
)
endif()
armino_component_register(
SRCS "${srcs}"
INCLUDE_DIRS "${incs}"
PRIV_REQUIRES bk_common include avdk_utils audio_record wanson
)