mirror of
https://github.com/espressif/esp-sr.git
synced 2025-09-15 15:28:44 +08:00
31 lines
704 B
CMake
31 lines
704 B
CMake
|
|
set(COMPONENT_ADD_INCLUDEDIRS
|
|
./esp_tts_chinese/include
|
|
)
|
|
|
|
register_component()
|
|
|
|
target_link_libraries(${COMPONENT_TARGET} INTERFACE "-L ${CMAKE_CURRENT_SOURCE_DIR}/esp_tts_chinese")
|
|
|
|
if(IDF_TARGET STREQUAL "esp32")
|
|
target_link_libraries(${COMPONENT_TARGET} INTERFACE
|
|
esp_tts_chinese
|
|
voice_set_xiaole
|
|
voice_set_template
|
|
)
|
|
endif()
|
|
|
|
if(IDF_TARGET STREQUAL "esp32s2")
|
|
target_link_libraries(${COMPONENT_TARGET} INTERFACE
|
|
esp_tts_chinese_esp32s2
|
|
voice_set_xiaole_esp32s2
|
|
voice_set_template_esp32s2
|
|
)
|
|
endif()
|
|
|
|
if(IDF_TARGET STREQUAL "esp32s3")
|
|
target_link_libraries(${COMPONENT_TARGET} INTERFACE
|
|
esp_tts_chinese_esp32s3
|
|
voice_set_xiaole_esp32s3
|
|
)
|
|
endif() |