mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-01-30 17:58:40 +01:00
15 lines
173 B
CMake
15 lines
173 B
CMake
|
# dependencies
|
||
|
|
||
|
find_package(Threads REQUIRED)
|
||
|
|
||
|
# third-party
|
||
|
|
||
|
#add_subdirectory(third-party)
|
||
|
|
||
|
# examples
|
||
|
|
||
|
if (EMSCRIPTEN)
|
||
|
add_subdirectory(whisper.wasm)
|
||
|
else()
|
||
|
endif()
|