ClickHouse/cmake/find/s2geometry.cmake

25 lines
894 B
CMake
Raw Normal View History

2021-07-06 11:34:33 +00:00
option(ENABLE_S2_GEOMETRY "Enable S2 geometry library" ${ENABLE_LIBRARIES})
if (ENABLE_S2_GEOMETRY)
if (NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/s2geometry")
2021-10-17 23:29:04 +00:00
message (WARNING "submodule contrib/s2geometry is missing. to fix try run: \n git submodule update --init")
2021-07-06 11:34:33 +00:00
set (ENABLE_S2_GEOMETRY 0)
set (USE_S2_GEOMETRY 0)
else()
2021-07-09 14:14:39 +00:00
if (OPENSSL_FOUND)
set (S2_GEOMETRY_LIBRARY s2)
set (S2_GEOMETRY_INCLUDE_DIR ${ClickHouse_SOURCE_DIR}/contrib/s2geometry/src/s2)
set (USE_S2_GEOMETRY 1)
else()
message (WARNING "S2 uses OpenSSL, but the latter is absent.")
endif()
2021-07-06 11:34:33 +00:00
endif()
if (NOT USE_S2_GEOMETRY)
message (${RECONFIGURE_MESSAGE_LEVEL} "Can't enable S2 geometry library")
endif()
endif()
2021-07-06 13:20:52 +00:00
message (STATUS "Using s2geometry=${USE_S2_GEOMETRY} : ${S2_GEOMETRY_INCLUDE_DIR}")