summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-12-11 15:11:01 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-12-11 15:11:01 (GMT)
commit24277a48771f3876cd2594e5e906aa470e30d49d (patch)
tree1dfbb34f19af3c14cea8e142eb56ac2bf92b979a /config
parent1670bd01bc1f9e2c9eead2fb742dde6a6cc50ec7 (diff)
downloadhdf5-24277a48771f3876cd2594e5e906aa470e30d49d.zip
hdf5-24277a48771f3876cd2594e5e906aa470e30d49d.tar.gz
hdf5-24277a48771f3876cd2594e5e906aa470e30d49d.tar.bz2
Remove search for clang tool - incorrect location
Diffstat (limited to 'config')
-rw-r--r--config/toolchain/clang.cmake18
1 files changed, 0 insertions, 18 deletions
diff --git a/config/toolchain/clang.cmake b/config/toolchain/clang.cmake
index f9da787..5e3b13a 100644
--- a/config/toolchain/clang.cmake
+++ b/config/toolchain/clang.cmake
@@ -7,23 +7,5 @@ set(CMAKE_C_COMPILER clang)
set(CMAKE_CXX_COMPILER clang++)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
-find_program(
- CLANG_TIDY_EXE
- NAMES "clang-tidy"
- DOC "Path to clang-tidy executable"
-)
-
-set(CMAKE_C_CLANG_TIDY "${CLANG_TIDY_EXE}" -checks=*,clang-analyzer-*,-clang-analyzer-cplusplus*,-readability-*,-google*)
-set(CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_EXE}" -checks=*,clang-analyzer-*,-clang-analyzer-cplusplus*,-readability-*,-google*)
-
-#find_program(
-# CLANG_FORMAT_EXE
-# NAMES "clang-format"
-# DOC "Path to clang-format executable"
-#)
-#
-#set(CMAKE_C_CLANG_FORMAT "${CLANG_FORMAT_EXE}")
-#set(CMAKE_CXX_CLANG_FORMAT "${CLANG_FORMAT_EXE}")
-
# the following is used if cross-compiling
set(CMAKE_CROSSCOMPILING_EMULATOR "")