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-mr_series-sherpa-onnx/sherpa-onnx/CMakeLists.txt

13 lines
212 B
CMake
Raw Normal View History

2022-09-23 09:22:06 +03:00
add_subdirectory(csrc)
2023-02-19 19:36:03 +08:00
if(SHERPA_ONNX_ENABLE_PYTHON)
add_subdirectory(python)
endif()
2023-02-22 21:14:57 +08:00
if(SHERPA_ONNX_ENABLE_JNI)
add_subdirectory(jni)
endif()
2023-02-24 16:42:46 +08:00
if(SHERPA_ONNX_ENABLE_C_API)
add_subdirectory(c-api)
endif()