File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -53,14 +53,14 @@ find_program(CLANG_FORMAT_BIN "clang-format")
53
53
if (NOT CLANG_FORMAT_BIN )
54
54
find_program (CLANG_FORMAT_BIN "clang-format-3.9" )
55
55
endif ()
56
- message (WARNING "CLANG FORMAT IS: " ${CLANG_FORMAT_BIN} )
56
+ message (STATUS "CLANG FORMAT IS: " ${CLANG_FORMAT_BIN} )
57
57
if (NOT CLANG_FORMAT_BIN )
58
- message (WARNING "CLANG-FORMAT not found. You can ignore this message if you are not a CT developer." )
58
+ message (STATUS "CLANG-FORMAT not found. You can ignore this message if you are not a CT developer." )
59
59
add_custom_target (clang-format
60
60
COMMAND ${CMAKE_COMMAND} -E echo_append "clang-format executable not found"
61
61
VERBATIM )
62
62
else ()
63
- message (WARNING "FOUND CLANG-FORMAT" )
63
+ message (STATUS "FOUND CLANG-FORMAT" )
64
64
add_custom_target (
65
65
clang-format
66
66
COMMAND ${CLANG_FORMAT_BIN}
@@ -94,13 +94,13 @@ function(ct_configure_clang_tidy TIDY_INC_DIRS)
94
94
if (NOT CLANG_TIDY_BIN )
95
95
find_program (CLANG_TIDY_BIN "clang_tidy" )
96
96
endif ()
97
- message (${CLANG_TIDY_BIN} )
97
+ message (STATUS ${CLANG_TIDY_BIN} )
98
98
if (NOT CLANG_TIDY_BIN )
99
99
add_custom_target (clang-tidy
100
100
COMMAND ${CMAKE_COMMAND} -E echo_append "clang-tidy executable not found"
101
101
VERBATIM )
102
102
else ()
103
- message (WARNING "FOUND CLANG-TIDY" )
103
+ message (STATUS "FOUND CLANG-TIDY" )
104
104
set (CLANG_TIDY_COMMAND COMMAND ${CLANG_TIDY_BIN} ${ALL_CXX_SOURCE_FILES} -config='' -header-filter=\" .*\\ /ct\\ /.*\" -- -std=c++11 -fopenmp ${CURRENT_INC_DIRS} )
105
105
106
106
add_custom_target (
You can’t perform that action at this time.
0 commit comments