whisper.cpp / examples /cli /CMakeLists.txt
ggerganov's picture
whisper : rename binaries + fix install (#2648)
30197de unverified
raw
history blame
228 Bytes
set(TARGET whisper-cli)
add_executable(${TARGET} cli.cpp)
include(DefaultTargetOptions)
target_link_libraries(${TARGET} PRIVATE common whisper ${FFMPEG_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
install(TARGETS ${TARGET} RUNTIME)