mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-07-09 22:06:53 +02:00
13 lines
382 B
CMake
13 lines
382 B
CMake
if (WHISPER_SUPPORT_SDL2)
|
|
# talk.llama
|
|
set(TARGET talk-llama)
|
|
|
|
# TODO: this is temporary
|
|
# need to export ggml symbols for MSVC, but too lazy ..
|
|
add_executable(${TARGET} talk-llama.cpp llama.cpp)
|
|
|
|
include(DefaultTargetOptions)
|
|
|
|
target_link_libraries(${TARGET} PRIVATE common common-sdl whisper ${SDL2_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
|
endif ()
|