mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-21 05:33:06 +00:00
10 lines
231 B
CMake
10 lines
231 B
CMake
|
if (WHISPER_SDL2)
|
||
|
# stream
|
||
|
set(TARGET lsp)
|
||
|
add_executable(${TARGET} lsp.cpp)
|
||
|
|
||
|
include(DefaultTargetOptions)
|
||
|
|
||
|
target_link_libraries(${TARGET} PRIVATE common common-sdl whisper ${CMAKE_THREAD_LIBS_INIT})
|
||
|
endif ()
|