ClickHouse/cmake/find/simdjson.cmake

9 lines
314 B
CMake
Raw Normal View History

2020-07-11 21:03:30 +00:00
if (NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/simdjson/include/simdjson.h")
message (WARNING "submodule contrib/simdjson is missing. to fix try run: \n git submodule update --init --recursive")
return()
endif ()
option (USE_SIMDJSON "Use simdjson" ON)
2019-05-15 17:19:39 +00:00
2020-07-11 21:03:30 +00:00
message(STATUS "Using simdjson=${USE_SIMDJSON}")