mirror of
https://github.com/espressif/esp-sr.git
synced 2025-09-15 15:28:44 +08:00
20 lines
450 B
CMake
20 lines
450 B
CMake
set(srcs
|
|
test_chinese_tts.c
|
|
)
|
|
|
|
if(IDF_TARGET STREQUAL "esp32")
|
|
list(APPEND srcs test_wakenet.c
|
|
test_afe.c
|
|
test_multinet.c)
|
|
|
|
elseif(IDF_TARGET STREQUAL "esp32s3")
|
|
list(APPEND srcs test_wakenet.c
|
|
test_afe.c
|
|
test_multinet.c)
|
|
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS "."
|
|
REQUIRES cmock esp-sr)
|