aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2021-05-20 11:31:17 +0200
committerTor Egge <Tor.Egge@online.no>2021-05-20 11:31:17 +0200
commit6c92e912eba3cfaa52cf359c02e1664d071fd18c (patch)
treec64beebd8bf976c182aeab311a1adc925b183af1 /CMakeLists.txt
parentc8746c75e6ad4dad17ecd3daf2916fe45fd594f9 (diff)
Add python bindings for a HNSW index fixture using a tensor attribute vector containing a nearest neighbor index.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c98994cf993..1045f6270c8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -32,6 +32,9 @@ find_package(JNI REQUIRED)
find_package(GTest REQUIRED)
+set(PYBIND11_FIND_PYTHON ON)
+find_package(pybind11 CONFIG REQUIRED)
+
include(build_settings.cmake)
# Enable CTest unit testing
@@ -42,6 +45,7 @@ vespa_install_data(valgrind-suppressions.txt etc/vespa)
# Include vespa config definitions in every target
include_directories(BEFORE ${CMAKE_BINARY_DIR}/configdefinitions/src)
+add_subdirectory(ann_benchmark)
add_subdirectory(application-model)
add_subdirectory(application-preprocessor)
add_subdirectory(athenz-identity-provider-service)