1
0

CMakeLists.txt 216 B

1234567891011121314
  1. # dependencies
  2. find_package(Threads REQUIRED)
  3. # third-party
  4. include_directories(${CMAKE_CURRENT_SOURCE_DIR})
  5. if (EMSCRIPTEN)
  6. else()
  7. if (NOT GGML_BACKEND_DL)
  8. add_subdirectory(vdot)
  9. endif()
  10. endif()