9 lines
251 B
CMake
9 lines
251 B
CMake
# Whisper library root CMakeLists
|
|
# This falls through to whisper/src which contains the actual build logic
|
|
|
|
if(NOT TARGET ggml)
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../ggml ${CMAKE_CURRENT_BINARY_DIR}/ggml)
|
|
endif()
|
|
|
|
add_subdirectory(src)
|