ClickHouse/base/CMakeLists.txt

22 lines
457 B
CMake
Raw Normal View History

2020-03-08 20:17:49 +00:00
if (USE_CLANG_TIDY)
set (CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_PATH}")
endif ()
2020-02-14 14:48:30 +00:00
add_subdirectory (common)
add_subdirectory (loggers)
add_subdirectory (daemon)
if (USE_INTERNAL_MEMCPY)
2020-02-14 14:48:30 +00:00
add_subdirectory (memcpy)
endif()
if (USE_MYSQL)
2020-02-14 14:48:30 +00:00
add_subdirectory (mysqlxx)
endif ()
if (USE_INTERNAL_CONSISTENT_HASHING_LIBRARY)
add_subdirectory (consistent-hashing)
endif ()
2018-08-30 18:44:46 +00:00
add_subdirectory (consistent-hashing-sumbur)
2020-02-14 14:48:30 +00:00
add_subdirectory (widechar_width)