2024-10-23 12:07:43 +08:00
|
|
|
include_directories(${CMAKE_SOURCE_DIR})
|
|
|
|
|
|
|
|
|
|
add_executable(streaming-zipformer-cxx-api ./streaming-zipformer-cxx-api.cc)
|
|
|
|
|
target_link_libraries(streaming-zipformer-cxx-api sherpa-onnx-cxx-api)
|
2024-10-23 16:40:12 +08:00
|
|
|
|
2025-01-20 16:41:10 +08:00
|
|
|
add_executable(kws-cxx-api ./kws-cxx-api.cc)
|
|
|
|
|
target_link_libraries(kws-cxx-api sherpa-onnx-cxx-api)
|
|
|
|
|
|
2024-11-01 11:40:13 +08:00
|
|
|
add_executable(streaming-zipformer-rtf-cxx-api ./streaming-zipformer-rtf-cxx-api.cc)
|
|
|
|
|
target_link_libraries(streaming-zipformer-rtf-cxx-api sherpa-onnx-cxx-api)
|
|
|
|
|
|
2024-10-23 16:40:12 +08:00
|
|
|
add_executable(whisper-cxx-api ./whisper-cxx-api.cc)
|
|
|
|
|
target_link_libraries(whisper-cxx-api sherpa-onnx-cxx-api)
|
|
|
|
|
|
2025-02-17 11:46:13 +08:00
|
|
|
add_executable(fire-red-asr-cxx-api ./fire-red-asr-cxx-api.cc)
|
|
|
|
|
target_link_libraries(fire-red-asr-cxx-api sherpa-onnx-cxx-api)
|
|
|
|
|
|
2024-10-26 23:24:46 +08:00
|
|
|
add_executable(moonshine-cxx-api ./moonshine-cxx-api.cc)
|
|
|
|
|
target_link_libraries(moonshine-cxx-api sherpa-onnx-cxx-api)
|
|
|
|
|
|
2024-10-23 16:40:12 +08:00
|
|
|
add_executable(sense-voice-cxx-api ./sense-voice-cxx-api.cc)
|
|
|
|
|
target_link_libraries(sense-voice-cxx-api sherpa-onnx-cxx-api)
|
2025-01-03 14:16:36 +08:00
|
|
|
|
|
|
|
|
if(SHERPA_ONNX_ENABLE_TTS)
|
|
|
|
|
add_executable(matcha-tts-zh-cxx-api ./matcha-tts-zh-cxx-api.cc)
|
|
|
|
|
target_link_libraries(matcha-tts-zh-cxx-api sherpa-onnx-cxx-api)
|
|
|
|
|
|
|
|
|
|
add_executable(matcha-tts-en-cxx-api ./matcha-tts-en-cxx-api.cc)
|
|
|
|
|
target_link_libraries(matcha-tts-en-cxx-api sherpa-onnx-cxx-api)
|
2025-01-16 15:07:26 +08:00
|
|
|
|
|
|
|
|
add_executable(kokoro-tts-en-cxx-api ./kokoro-tts-en-cxx-api.cc)
|
|
|
|
|
target_link_libraries(kokoro-tts-en-cxx-api sherpa-onnx-cxx-api)
|
2025-02-07 14:51:49 +08:00
|
|
|
|
|
|
|
|
add_executable(kokoro-tts-zh-en-cxx-api ./kokoro-tts-zh-en-cxx-api.cc)
|
|
|
|
|
target_link_libraries(kokoro-tts-zh-en-cxx-api sherpa-onnx-cxx-api)
|
2025-01-03 14:16:36 +08:00
|
|
|
endif()
|