fix: correct DiskANN subdirectory path

- Change from src/third_party/DiskANN to third_party/DiskANN
- This was causing CMake to fail finding the subdirectory
This commit is contained in:
Andy Lee
2025-07-25 12:51:47 -07:00
parent 732384f4f8
commit d1fefb6378

View File

@@ -33,4 +33,4 @@ set(Python3_FIND_VIRTUALENV ONLY CACHE STRING "" FORCE)
# 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)
add_subdirectory(third_party/DiskANN)