mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-01-28 15:14:39 +00:00
2e59dced12
* whisper : rename binaries + fix install * cont : try to fix ci * cont : fix emscripten builds
9 lines
228 B
CMake
9 lines
228 B
CMake
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)
|