whisper.cpp/examples/vad-speech-segments/CMakeLists.txt

9 lines
247 B
CMake

set(TARGET whisper-vad-speech-segments)
add_executable(${TARGET} speech.cpp)
include(DefaultTargetOptions)
target_link_libraries(${TARGET} PRIVATE common whisper ${FFMPEG_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
install(TARGETS ${TARGET} RUNTIME)