2020-05-18 01:19:50 +00:00
|
|
|
if (USE_CLANG_TIDY)
|
|
|
|
set (CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_PATH}")
|
|
|
|
endif ()
|
|
|
|
|
2019-01-11 12:40:19 +00:00
|
|
|
if(MAKE_STATIC_LIBRARIES)
|
|
|
|
set(MAX_LINKER_MEMORY 3500)
|
2018-12-27 15:23:37 +00:00
|
|
|
else()
|
2019-01-11 12:40:19 +00:00
|
|
|
set(MAX_LINKER_MEMORY 2500)
|
|
|
|
endif()
|
|
|
|
include(../cmake/limit_jobs.cmake)
|
2018-12-27 15:23:37 +00:00
|
|
|
|
2018-08-23 16:06:13 +00:00
|
|
|
# Utils used in package
|
2016-02-07 21:58:58 +00:00
|
|
|
add_subdirectory (config-processor)
|
2018-03-28 02:32:54 +00:00
|
|
|
add_subdirectory (report)
|
2018-08-23 16:06:13 +00:00
|
|
|
|
|
|
|
# Not used in package
|
|
|
|
if (NOT DEFINED ENABLE_UTILS OR ENABLE_UTILS)
|
|
|
|
add_subdirectory (compressor)
|
|
|
|
add_subdirectory (iotest)
|
|
|
|
add_subdirectory (corrector_utf8)
|
|
|
|
add_subdirectory (zookeeper-cli)
|
|
|
|
add_subdirectory (zookeeper-dump-tree)
|
|
|
|
add_subdirectory (zookeeper-remove-by-list)
|
|
|
|
add_subdirectory (zookeeper-create-entry-to-download-part)
|
2019-07-19 00:39:22 +00:00
|
|
|
add_subdirectory (zookeeper-adjust-block-numbers-to-parts)
|
2018-08-23 16:06:13 +00:00
|
|
|
add_subdirectory (wikistat-loader)
|
|
|
|
add_subdirectory (check-marks)
|
|
|
|
add_subdirectory (test-data-generator)
|
2019-01-25 15:17:12 +00:00
|
|
|
add_subdirectory (convert-month-partitioned-parts)
|
2019-05-18 22:48:28 +00:00
|
|
|
add_subdirectory (checksum-for-compressed-block)
|
2020-09-04 10:39:17 +00:00
|
|
|
add_subdirectory (db-generator)
|
2020-08-12 05:50:22 +00:00
|
|
|
add_subdirectory (wal-dump)
|
2020-10-21 12:17:37 +00:00
|
|
|
add_subdirectory (check-mysql-binlog)
|
2018-08-23 16:06:13 +00:00
|
|
|
endif ()
|
2018-08-29 19:43:58 +00:00
|
|
|
|
|
|
|
if (ENABLE_CODE_QUALITY)
|
|
|
|
add_subdirectory (check-style)
|
|
|
|
endif ()
|
2019-06-28 03:30:35 +00:00
|
|
|
|
|
|
|
add_subdirectory (package)
|