mirror of
https://github.com/ggml-org/whisper.cpp.git
synced 2025-09-15 13:28:35 +08: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)
|