| | |
| | | add_library(funasr ${files}) |
| | | |
| | | if(WIN32) |
| | | set(EXTRA_LIBS pthread yaml-cpp csrc) |
| | | set(EXTRA_LIBS pthread yaml-cpp csrc glog) |
| | | if(CMAKE_CL_64) |
| | | target_link_directories(funasr PUBLIC ${CMAKE_SOURCE_DIR}/win/lib/x64) |
| | | else() |
| | |
| | | |
| | | target_compile_definitions(funasr PUBLIC -D_FUNASR_API_EXPORT) |
| | | else() |
| | | |
| | | set(EXTRA_LIBS pthread yaml-cpp csrc) |
| | | |
| | | target_include_directories(funasr PUBLIC) |
| | | target_link_directories(funasr PUBLIC) |
| | | set(EXTRA_LIBS pthread yaml-cpp csrc glog ) |
| | | include_directories(${ONNXRUNTIME_DIR}/include) |
| | | endif() |
| | | |
| | |
| | | target_link_libraries(funasr PUBLIC onnxruntime ${EXTRA_LIBS}) |
| | | |
| | | add_executable(funasr-onnx-offline "funasr-onnx-offline.cpp") |
| | | add_executable(funasr-onnx-offline-vad "funasr-onnx-offline-vad.cpp") |
| | | add_executable(funasr-onnx-offline-punc "funasr-onnx-offline-punc.cpp") |
| | | add_executable(funasr-onnx-offline-rtf "funasr-onnx-offline-rtf.cpp") |
| | | target_link_libraries(funasr-onnx-offline PUBLIC funasr) |
| | | target_link_libraries(funasr-onnx-offline-vad PUBLIC funasr) |
| | | target_link_libraries(funasr-onnx-offline-punc PUBLIC funasr) |
| | | target_link_libraries(funasr-onnx-offline-rtf PUBLIC funasr) |
| | | |