mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 21:39:52 +00:00
13 lines
171 B
CMake
13 lines
171 B
CMake
|
# dependencies
|
||
|
|
||
|
find_package(Threads REQUIRED)
|
||
|
|
||
|
# third-party
|
||
|
|
||
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
||
|
|
||
|
if (EMSCRIPTEN)
|
||
|
else()
|
||
|
add_subdirectory(vdot)
|
||
|
endif()
|