mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
d456aa86ef
This reverts commit 89419ceb9b
(curl part moved to separate commit)
Squashed:
- termcap removed
- fix for cassandra on apple merged
- cmake: fix "Can't find system zlib library" in unbundled build
- cmake: fix condition when testing for rdkafka platform
- cmake: PROTOBUF_OLD_ABI_COMPAT shouldn't be enabled for internal protobuf
Signed-off-by: Konstantin Podshumok <kpp.live+signed@gmail.com>
21 lines
1.1 KiB
CMake
21 lines
1.1 KiB
CMake
# This file configures static analysis tools that can be integrated to the build process
|
|
|
|
option (ENABLE_CLANG_TIDY "Use 'clang-tidy' static analyzer if present" OFF)
|
|
if (ENABLE_CLANG_TIDY)
|
|
if (${CMAKE_VERSION} VERSION_LESS "3.6.0")
|
|
message(FATAL_ERROR "clang-tidy requires CMake version at least 3.6.")
|
|
endif()
|
|
|
|
find_program (CLANG_TIDY_PATH NAMES "clang-tidy" "clang-tidy-10" "clang-tidy-9" "clang-tidy-8")
|
|
if (CLANG_TIDY_PATH)
|
|
message(STATUS "Using clang-tidy: ${CLANG_TIDY_PATH}. The checks will be run during build process. See the .clang-tidy file at the root directory to configure the checks.")
|
|
set (USE_CLANG_TIDY 1)
|
|
# The variable CMAKE_CXX_CLANG_TIDY will be set inside src and base directories with non third-party code.
|
|
# set (CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_PATH}")
|
|
elseif (FAIL_ON_UNSUPPORTED_OPTIONS_COMBINATION)
|
|
message(FATAL_ERROR "clang-tidy is not found")
|
|
else ()
|
|
message(STATUS "clang-tidy is not found. This is normal - the tool is only used for static code analysis and isn't essential for the build.")
|
|
endif ()
|
|
endif ()
|