mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 08:34:37 +01:00
07d04280be
move some utility functions into common.h
10 lines
240 B
CMake
10 lines
240 B
CMake
if (WHISPER_SDL2)
|
|
# stream
|
|
set(TARGET lsp)
|
|
add_executable(${TARGET} lsp.cpp)
|
|
|
|
include(DefaultTargetOptions)
|
|
|
|
target_link_libraries(${TARGET} PRIVATE common json_cpp common-sdl whisper ${CMAKE_THREAD_LIBS_INIT})
|
|
endif ()
|