- Fix DiskANN CMakeLists.txt path reference - Add macOS environment variable detection for OpenMP_ROOT - Support both Intel (/usr/local) and Apple Silicon (/opt/homebrew) paths
9 lines
350 B
CMake
9 lines
350 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(third_party/DiskANN)
|