mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
16 lines
341 B
CMake
16 lines
341 B
CMake
if (USE_CLANG_TIDY)
|
|
set (CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_PATH}")
|
|
endif ()
|
|
|
|
add_subdirectory (common)
|
|
add_subdirectory (daemon)
|
|
add_subdirectory (loggers)
|
|
add_subdirectory (pcg-random)
|
|
add_subdirectory (widechar_width)
|
|
add_subdirectory (readpassphrase)
|
|
add_subdirectory (bridge)
|
|
|
|
if (USE_MYSQL)
|
|
add_subdirectory (mysqlxx)
|
|
endif ()
|