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/csrc/CMakeLists.txt

18 lines
342 B
CMake
Raw Normal View History

2022-10-12 11:27:05 +08:00
include_directories(${CMAKE_SOURCE_DIR})
add_executable(sherpa-onnx
decode.cc
rnnt-model.cc
sherpa-onnx.cc
symbol-table.cc
wave-reader.cc
)
2022-09-23 08:46:25 +03:00
2022-10-12 11:27:05 +08:00
target_link_libraries(sherpa-onnx
onnxruntime
kaldi-native-fbank-core
2022-09-23 08:46:25 +03:00
)
add_executable(sherpa-show-onnx-info show-onnx-info.cc)
target_link_libraries(sherpa-show-onnx-info onnxruntime)