mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
22 lines
457 B
CMake
22 lines
457 B
CMake
if (USE_CLANG_TIDY)
|
|
set (CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_PATH}")
|
|
endif ()
|
|
|
|
add_subdirectory (common)
|
|
add_subdirectory (loggers)
|
|
add_subdirectory (daemon)
|
|
|
|
if (USE_INTERNAL_MEMCPY)
|
|
add_subdirectory (memcpy)
|
|
endif()
|
|
|
|
if (USE_MYSQL)
|
|
add_subdirectory (mysqlxx)
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_CONSISTENT_HASHING_LIBRARY)
|
|
add_subdirectory (consistent-hashing)
|
|
endif ()
|
|
add_subdirectory (consistent-hashing-sumbur)
|
|
add_subdirectory (widechar_width)
|