forked from extern/whisper.cpp
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 ()
|