mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
17 lines
584 B
CMake
17 lines
584 B
CMake
option(ENABLE_ANNOY "Enable Annoy index support" ${ENABLE_LIBRARIES})
|
|
|
|
if ((NOT ENABLE_ANNOY) OR (SANITIZE STREQUAL "undefined"))
|
|
message (STATUS "Not using annoy")
|
|
return()
|
|
endif()
|
|
|
|
set(ANNOY_PROJECT_DIR "${ClickHouse_SOURCE_DIR}/contrib/annoy")
|
|
set(ANNOY_SOURCE_DIR "${ANNOY_PROJECT_DIR}/src")
|
|
|
|
add_library(_annoy INTERFACE)
|
|
target_include_directories(_annoy SYSTEM INTERFACE ${ANNOY_SOURCE_DIR})
|
|
|
|
add_library(ch_contrib::annoy ALIAS _annoy)
|
|
target_compile_definitions(_annoy INTERFACE ENABLE_ANNOY)
|
|
target_compile_definitions(_annoy INTERFACE ANNOYLIB_MULTITHREADED_BUILD)
|