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.
ggml/examples/whisper/CMakeLists.txt

16 lines
334 B

#
# whisper
add_library(whisper-cpp
whisper.cpp
)
target_link_libraries(whisper-cpp PRIVATE
ggml
)
set(TEST_TARGET whisper)
add_executable(${TEST_TARGET} main.cpp common.cpp)
target_link_libraries(${TEST_TARGET} PRIVATE whisper-cpp)
target_include_directories(${TEST_TARGET} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/..)