mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
ab48947305
* created program in utils * reset test * removed additional printings * refactoring * fix float generator, fix build * add readme * refactor readme * fixed random int func * clang format * fix build * fix build * fix PVS, uncrustify * newline at end of file * refactor string_type func * restyle func maps * support IN operation * support multiquery * fix style * change rand to pcg64 * fix array generation * fix build * better * subqueries * style * better * delete samples.sql Co-authored-by: Roman Ilgovskiy <ilgovskiy@yandex-team.ru>
40 lines
1.1 KiB
CMake
40 lines
1.1 KiB
CMake
if (USE_CLANG_TIDY)
|
|
set (CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_PATH}")
|
|
endif ()
|
|
|
|
if(MAKE_STATIC_LIBRARIES)
|
|
set(MAX_LINKER_MEMORY 3500)
|
|
else()
|
|
set(MAX_LINKER_MEMORY 2500)
|
|
endif()
|
|
include(../cmake/limit_jobs.cmake)
|
|
|
|
# Utils used in package
|
|
add_subdirectory (config-processor)
|
|
add_subdirectory (report)
|
|
|
|
# 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)
|
|
add_subdirectory (zookeeper-adjust-block-numbers-to-parts)
|
|
add_subdirectory (wikistat-loader)
|
|
add_subdirectory (check-marks)
|
|
add_subdirectory (test-data-generator)
|
|
add_subdirectory (convert-month-partitioned-parts)
|
|
add_subdirectory (checksum-for-compressed-block)
|
|
add_subdirectory (db-generator)
|
|
add_subdirectory (wal-dump)
|
|
endif ()
|
|
|
|
if (ENABLE_CODE_QUALITY)
|
|
add_subdirectory (check-style)
|
|
endif ()
|
|
|
|
add_subdirectory (package)
|