mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
d456aa86ef
This reverts commit 89419ceb9b
(curl part moved to separate commit)
Squashed:
- termcap removed
- fix for cassandra on apple merged
- cmake: fix "Can't find system zlib library" in unbundled build
- cmake: fix condition when testing for rdkafka platform
- cmake: PROTOBUF_OLD_ABI_COMPAT shouldn't be enabled for internal protobuf
Signed-off-by: Konstantin Podshumok <kpp.live+signed@gmail.com>
36 lines
1.4 KiB
CMake
36 lines
1.4 KiB
CMake
option(ENABLE_RAPIDJSON "Use rapidjson" ${ENABLE_LIBRARIES})
|
|
if(NOT ENABLE_RAPIDJSON)
|
|
if(USE_INTERNAL_RAPIDJSON_LIBRARY)
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Can't use internal rapidjson library with ENABLE_RAPIDJSON=OFF")
|
|
endif()
|
|
return()
|
|
endif()
|
|
|
|
option(USE_INTERNAL_RAPIDJSON_LIBRARY "Set to FALSE to use system rapidjson library instead of bundled" ${NOT_UNBUNDLED})
|
|
|
|
if(NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/rapidjson/include/rapidjson/rapidjson.h")
|
|
if(USE_INTERNAL_RAPIDJSON_LIBRARY)
|
|
message(WARNING "submodule contrib/rapidjson is missing. to fix try run: \n git submodule update --init --recursive")
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Can't find internal rapidjson library")
|
|
set(USE_INTERNAL_RAPIDJSON_LIBRARY 0)
|
|
endif()
|
|
set(MISSING_INTERNAL_RAPIDJSON_LIBRARY 1)
|
|
endif()
|
|
|
|
if(NOT USE_INTERNAL_RAPIDJSON_LIBRARY)
|
|
find_path(RAPIDJSON_INCLUDE_DIR NAMES rapidjson/rapidjson.h PATHS ${RAPIDJSON_INCLUDE_PATHS})
|
|
if(NOT RAPIDJSON_INCLUDE_DIR)
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Can't find system rapidjson")
|
|
endif()
|
|
endif()
|
|
|
|
if(RAPIDJSON_INCLUDE_DIR)
|
|
set(USE_RAPIDJSON 1)
|
|
elseif(NOT MISSING_INTERNAL_RAPIDJSON_LIBRARY)
|
|
set(RAPIDJSON_INCLUDE_DIR "${ClickHouse_SOURCE_DIR}/contrib/rapidjson/include")
|
|
set(USE_INTERNAL_RAPIDJSON_LIBRARY 1)
|
|
set(USE_RAPIDJSON 1)
|
|
endif()
|
|
|
|
message(STATUS "Using rapidjson=${USE_RAPIDJSON}: ${RAPIDJSON_INCLUDE_DIR}")
|