Files
whisper.cpp/examples/talk.llama/CMakeLists.txt
Georgi Gerganov 66fc4010c2 WIP
2023-03-26 18:06:31 +03:00

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 ()