aboutsummaryrefslogtreecommitdiff
path: root/llama.cpp/pocs/CMakeLists.txt
blob: d49d14dee4351395d04745660bd970085cfe6aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# dependencies

find_package(Threads REQUIRED)

# third-party

include_directories(${CMAKE_CURRENT_SOURCE_DIR})

if (EMSCRIPTEN)
else()
    if (NOT GGML_BACKEND_DL)
        add_subdirectory(vdot)
    endif()
endif()