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/sherpa-onnx/CMakeLists.txt
Fangjun Kuang c63c4c3389 C api (#60)
2023-02-24 16:42:46 +08:00

13 lines
212 B
CMake

add_subdirectory(csrc)
if(SHERPA_ONNX_ENABLE_PYTHON)
add_subdirectory(python)
endif()
if(SHERPA_ONNX_ENABLE_JNI)
add_subdirectory(jni)
endif()
if(SHERPA_ONNX_ENABLE_C_API)
add_subdirectory(c-api)
endif()