mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Remove unbundled yaml-cpp support
This commit is contained in:
parent
dea90967cf
commit
592bc1e97d
@ -497,7 +497,6 @@ include (cmake/find/miniselect.cmake)
|
||||
include (cmake/find/curl.cmake)
|
||||
include (cmake/find/s3.cmake)
|
||||
include (cmake/find/libpqxx.cmake)
|
||||
include (cmake/find/yaml-cpp.cmake)
|
||||
include (cmake/find/nlp.cmake)
|
||||
include (cmake/find/filelog.cmake)
|
||||
include (cmake/find/sentry.cmake)
|
||||
|
@ -1,9 +0,0 @@
|
||||
option(USE_YAML_CPP "Enable yaml-cpp" ${ENABLE_LIBRARIES})
|
||||
|
||||
if (NOT USE_YAML_CPP)
|
||||
return()
|
||||
endif()
|
||||
|
||||
if (NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/yaml-cpp/README.md")
|
||||
message (ERROR "submodule contrib/yaml-cpp is missing. to fix try run: \n git submodule update --init")
|
||||
endif()
|
4
contrib/CMakeLists.txt
vendored
4
contrib/CMakeLists.txt
vendored
@ -39,11 +39,7 @@ add_subdirectory (replxx-cmake)
|
||||
add_subdirectory (unixodbc-cmake)
|
||||
add_subdirectory (nanodbc-cmake)
|
||||
add_subdirectory (capnproto-cmake)
|
||||
|
||||
if (USE_YAML_CPP)
|
||||
add_subdirectory (yaml-cpp-cmake)
|
||||
endif()
|
||||
|
||||
add_subdirectory (re2-cmake)
|
||||
add_subdirectory (xz-cmake)
|
||||
add_subdirectory (brotli-cmake)
|
||||
|
@ -1,3 +1,10 @@
|
||||
option(ENABLE_YAML_CPP "Enable yaml-cpp" ${ENABLE_LIBRARIES})
|
||||
|
||||
if (NOT ENABLE_YAML_CPP)
|
||||
message(STATUS "Not using yaml")
|
||||
return()
|
||||
endif()
|
||||
|
||||
set (LIBRARY_DIR ${ClickHouse_SOURCE_DIR}/contrib/yaml-cpp)
|
||||
|
||||
set (SRCS
|
||||
@ -34,6 +41,7 @@ set (SRCS
|
||||
|
||||
add_library (yaml-cpp ${SRCS})
|
||||
|
||||
|
||||
target_include_directories(yaml-cpp PRIVATE ${LIBRARY_DIR}/include/yaml-cpp)
|
||||
target_include_directories(yaml-cpp SYSTEM BEFORE PUBLIC ${LIBRARY_DIR}/include)
|
||||
|
||||
add_library (ch_contrib::yaml_cpp ALIAS yaml-cpp)
|
||||
|
@ -27,7 +27,7 @@ target_link_libraries(clickhouse_common_config_no_zookeeper_log
|
||||
string_utils
|
||||
)
|
||||
|
||||
if (USE_YAML_CPP)
|
||||
target_link_libraries(clickhouse_common_config PRIVATE yaml-cpp)
|
||||
target_link_libraries(clickhouse_common_config_no_zookeeper_log PRIVATE yaml-cpp)
|
||||
if (TARGET ch_contrib::yaml_cpp)
|
||||
target_link_libraries(clickhouse_common_config PRIVATE ch_contrib::yaml_cpp)
|
||||
target_link_libraries(clickhouse_common_config_no_zookeeper_log PRIVATE ch_contrib::yaml_cpp)
|
||||
endif()
|
||||
|
@ -52,6 +52,9 @@ endif()
|
||||
if (TARGET ch_contrib::base64)
|
||||
set(USE_BASE64 1)
|
||||
endif()
|
||||
if (TARGET ch_contrib::yaml_cpp)
|
||||
set(USE_YAML_CPP 1)
|
||||
endif()
|
||||
if (TARGET ch_contrib::sqlite)
|
||||
set(USE_SQLITE 1)
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user