Files
2026-07-13 13:25:10 +08:00

6 lines
239 B
CMake

set(TARGET llama-funasr-encoder)
add_executable(${TARGET} funasr-encoder.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE ggml ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_17)