This repository has been archived on 2025-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
enginex_bi_series-sherpa-onnx/wasm/CMakeLists.txt

32 lines
595 B
CMake
Raw Normal View History

if(SHERPA_ONNX_ENABLE_WASM_TTS)
add_subdirectory(tts)
endif()
2024-02-23 17:39:11 +08:00
if(SHERPA_ONNX_ENABLE_WASM_ASR)
add_subdirectory(asr)
endif()
2024-03-03 20:00:36 +08:00
2024-03-11 21:02:31 +08:00
if(SHERPA_ONNX_ENABLE_WASM_KWS)
add_subdirectory(kws)
endif()
2024-08-23 17:08:37 +08:00
if(SHERPA_ONNX_ENABLE_WASM_VAD)
add_subdirectory(vad)
endif()
if(SHERPA_ONNX_ENABLE_WASM_VAD_ASR)
add_subdirectory(vad-asr)
endif()
if(SHERPA_ONNX_ENABLE_WASM_SPEECH_ENHANCEMENT)
add_subdirectory(speech-enhancement)
endif()
if(SHERPA_ONNX_ENABLE_WASM_SPEAKER_DIARIZATION)
add_subdirectory(speaker-diarization)
endif()
2024-03-03 20:00:36 +08:00
if(SHERPA_ONNX_ENABLE_WASM_NODEJS)
add_subdirectory(nodejs)
endif()