whisper.cpp/examples/mic/CMakeLists.txt

9 lines
216 B
CMake

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