mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-19 04:37:51 +00:00
2948c740a2
* sync : update scripts * sync : ggml * talk-llama : sync llama.cpp * make : WHISPER_CUBLAS -> WHISPER_CUDA * ci : try to fix sycl build * talk-llama : fix make build
19 lines
643 B
CMake
19 lines
643 B
CMake
if (WHISPER_SDL2)
|
|
# talk-llama
|
|
set(TARGET talk-llama)
|
|
add_executable(${TARGET} talk-llama.cpp llama.cpp unicode.cpp unicode-data.cpp)
|
|
target_include_directories(${TARGET} PRIVATE ${SDL2_INCLUDE_DIRS})
|
|
|
|
if (WHISPER_CLBLAST)
|
|
set(CLBLAST_LIBNAME clblast)
|
|
endif ()
|
|
target_link_libraries(${TARGET} PRIVATE common common-sdl whisper ${SDL2_LIBRARIES} ${CLBLAST_LIBNAME} ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
if(WIN32)
|
|
# It requires Windows 8.1 or later for PrefetchVirtualMemory
|
|
target_compile_definitions(${TARGET} PRIVATE -D_WIN32_WINNT=0x0602)
|
|
endif()
|
|
|
|
include(DefaultTargetOptions)
|
|
endif ()
|