mirror of
https://github.com/ggml-org/whisper.cpp.git
synced 2026-07-23 11:10:57 -05:00
* whisper : rename binaries + fix install * cont : try to fix ci * cont : fix emscripten builds
9 lines
205 B
CMake
9 lines
205 B
CMake
set(TARGET whisper-bench)
|
|
add_executable(${TARGET} bench.cpp)
|
|
|
|
include(DefaultTargetOptions)
|
|
|
|
target_link_libraries(${TARGET} PRIVATE whisper ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
install(TARGETS ${TARGET} RUNTIME)
|