6 lines
239 B
CMake
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)
|