2020-05-18 01:19:50 +00:00
|
|
|
if (USE_CLANG_TIDY)
|
|
|
|
set (CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_PATH}")
|
|
|
|
endif ()
|
|
|
|
|
2023-01-03 18:51:10 +00:00
|
|
|
set(MAX_LINKER_MEMORY 3500)
|
2020-12-10 18:34:48 +00:00
|
|
|
include(../cmake/limit_jobs.cmake)
|
|
|
|
|
2022-07-07 00:40:41 +00:00
|
|
|
if (ENABLE_CLICKHOUSE_SELF_EXTRACTING)
|
|
|
|
add_subdirectory (self-extracting-executable)
|
|
|
|
endif ()
|
|
|
|
|
2023-11-20 00:12:08 +00:00
|
|
|
# Not used in packages
|
2023-05-07 12:12:35 +00:00
|
|
|
if (ENABLE_UTILS)
|
2018-08-23 16:06:13 +00:00
|
|
|
add_subdirectory (compressor)
|
|
|
|
add_subdirectory (corrector_utf8)
|
|
|
|
add_subdirectory (zookeeper-cli)
|
|
|
|
add_subdirectory (zookeeper-dump-tree)
|
|
|
|
add_subdirectory (zookeeper-remove-by-list)
|
|
|
|
add_subdirectory (check-marks)
|
2019-05-18 22:48:28 +00:00
|
|
|
add_subdirectory (checksum-for-compressed-block)
|
2020-10-21 12:17:37 +00:00
|
|
|
add_subdirectory (check-mysql-binlog)
|
2021-04-12 15:40:42 +00:00
|
|
|
add_subdirectory (keeper-bench)
|
2023-05-06 17:06:44 +00:00
|
|
|
add_subdirectory (keeper-data-dumper)
|
|
|
|
add_subdirectory (memcpy-bench)
|
2018-08-23 16:06:13 +00:00
|
|
|
endif ()
|