mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 09:52:38 +00:00
17 lines
369 B
CMake
17 lines
369 B
CMake
if (USE_CLANG_TIDY)
|
|
set (CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_PATH}")
|
|
endif ()
|
|
|
|
set(MAX_LINKER_MEMORY 3500)
|
|
include(../cmake/limit_jobs.cmake)
|
|
|
|
if (ENABLE_CLICKHOUSE_SELF_EXTRACTING)
|
|
add_subdirectory (self-extracting-executable)
|
|
endif ()
|
|
|
|
# Not used in packages
|
|
if (ENABLE_UTILS)
|
|
add_subdirectory (corrector_utf8)
|
|
add_subdirectory (memcpy-bench)
|
|
endif ()
|