We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42499fc commit bddea5aCopy full SHA for bddea5a
cmake/HealthCheck.cmake
@@ -4,7 +4,6 @@ include(${CMAKE_CURRENT_LIST_DIR}/ClangTidy.cmake)
4
5
set(OPTION_CPPCHECK_ENABLED Off)
6
set(OPTION_CLANG_TIDY_ENABLED Off)
7
-set(OPTION_UNCRUSTIFY_ENABLED Off)
8
9
# Function to register a target for enabled health checks
10
function(perform_health_checks target)
@@ -24,11 +23,6 @@ function(perform_health_checks target)
24
23
add_dependencies(check-${target} clang-tidy-${target})
25
endif()
26
27
- if (OPTION_UNCRUSTIFY_ENABLED)
28
- perform_uncrustify(uncrustify-${target} ${target} ${ARGN})
29
- add_dependencies(check-${target} uncrustify-${target})
30
- endif()
31
-
32
add_dependencies(check-all check-${target})
33
endfunction()
34
0 commit comments