mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 23:29:44 +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()
|