From d22de6c7e92c33a8ba28fec133bacf1c7959be75 Mon Sep 17 00:00:00 2001 From: Konstantin Podshumok Date: Sun, 9 Aug 2020 08:36:31 +0300 Subject: [PATCH] cmake: Make sure USE_SIMDJSON default value is in sync with ENABLE_LIBRARIES Signed-off-by: Konstantin Podshumok --- cmake/find/simdjson.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/find/simdjson.cmake b/cmake/find/simdjson.cmake index ef0c744d4d6..cffe20bdb2d 100644 --- a/cmake/find/simdjson.cmake +++ b/cmake/find/simdjson.cmake @@ -1,4 +1,4 @@ -option (USE_SIMDJSON "Use simdjson" ON) +option (USE_SIMDJSON "Use simdjson" ${ENABLE_LIBRARIES}) 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")