You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
330 B
16 lines
330 B
#
|
|
# whisper
|
|
|
|
add_library(whisper-cpp SHARED
|
|
whisper.cpp
|
|
)
|
|
|
|
target_link_libraries(whisper-cpp PRIVATE
|
|
ggml
|
|
)
|
|
|
|
set(TEST_TARGET whisper)
|
|
add_executable(${TEST_TARGET} main.cpp)
|
|
target_link_libraries(${TEST_TARGET} PRIVATE whisper-cpp)
|
|
target_include_directories(${TEST_TARGET} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/..)
|