mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
9fb3135c23
Add filter on shards and tables. Add flag --dry-run. The utility now checks cversion before doing anything.
41 lines
1.2 KiB
CMake
41 lines
1.2 KiB
CMake
if (NOT NO_WERROR)
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
|
|
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-copy-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 (fill-factor)
|
|
add_subdirectory (check-marks)
|
|
add_subdirectory (test-data-generator)
|
|
add_subdirectory (convert-month-partitioned-parts)
|
|
add_subdirectory (checksum-for-compressed-block)
|
|
endif ()
|
|
|
|
if (ENABLE_CODE_QUALITY)
|
|
add_subdirectory (check-style)
|
|
endif ()
|
|
|
|
add_subdirectory (package)
|