mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 08:52:06 +00:00
b3098822e0
Replace hyperscan by vectorscan
25 lines
500 B
CMake
25 lines
500 B
CMake
if (TARGET ch_contrib::fastops)
|
|
set(USE_FASTOPS 1)
|
|
endif()
|
|
if (TARGET ch_contrib::base-x)
|
|
set(USE_BASEX 1)
|
|
endif()
|
|
if (TARGET ch_contrib::base64)
|
|
set(USE_BASE64 1)
|
|
endif()
|
|
if (TARGET ch_contrib::simdjson)
|
|
set(USE_SIMDJSON 1)
|
|
endif()
|
|
if (TARGET ch_contrib::rapidjson)
|
|
set(USE_RAPIDJSON 1)
|
|
endif()
|
|
if (TARGET ch_contrib::s2)
|
|
set(USE_S2_GEOMETRY 1)
|
|
endif()
|
|
if (TARGET ch_contrib::h3)
|
|
set(USE_H3 1)
|
|
endif()
|
|
if (TARGET ch_contrib::vectorscan)
|
|
set(USE_VECTORSCAN 1)
|
|
endif()
|