* chore: shorter build time * chore: update faiss * fix: no longger do embedding server reuse * fix: do not reuse emb_server and close it properly * feat: cli tool * feat: cli more args * fix: same embedding logic
9 lines
354 B
CMake
9 lines
354 B
CMake
# packages/leann-backend-diskann/CMakeLists.txt (simplified version)
|
|
|
|
cmake_minimum_required(VERSION 3.20)
|
|
project(leann_backend_diskann_wrapper)
|
|
|
|
# Tell CMake to directly enter the DiskANN submodule and execute its own CMakeLists.txt
|
|
# DiskANN will handle everything itself, including compiling Python bindings
|
|
add_subdirectory(src/third_party/DiskANN)
|