mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-01-10 23:12:41 +00:00
2e59dced12
* whisper : rename binaries + fix install * cont : try to fix ci * cont : fix emscripten builds
11 lines
272 B
CMake
11 lines
272 B
CMake
if (WHISPER_SDL2)
|
|
set(TARGET whisper-stream)
|
|
add_executable(${TARGET} stream.cpp)
|
|
|
|
include(DefaultTargetOptions)
|
|
|
|
target_link_libraries(${TARGET} PRIVATE common common-sdl whisper ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
install(TARGETS ${TARGET} RUNTIME)
|
|
endif ()
|