ClickHouse/base/CMakeLists.txt

22 lines
524 B
CMake
Raw Normal View History

if (USE_DEBUG_HELPERS)
2020-02-14 14:48:30 +00:00
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include ${CMAKE_CURRENT_SOURCE_DIR}/common/iostream_debug_helpers.h")
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)