2019-02-23 19:40:34 +00:00
|
|
|
get_target_property(CLANG_TIDY_SRCS_TMP conky SOURCES)
|
|
|
|
get_target_property(conky_SRC_DIR conky SOURCE_DIR)
|
|
|
|
|
|
|
|
if(BUILD_TESTS)
|
|
|
|
get_target_property(CLANG_TIDY_SRCS_TMP_CORE conky_core SOURCES)
|
|
|
|
list(APPEND CLANG_TIDY_SRCS_TMP ${CLANG_TIDY_SRCS_TMP_CORE})
|
2018-05-12 23:26:31 +00:00
|
|
|
endif()
|
2019-02-23 19:40:34 +00:00
|
|
|
|
|
|
|
foreach(TMP_SRC ${CLANG_TIDY_SRCS_TMP})
|
|
|
|
if("${TMP_SRC}" MATCHES ".*\.cc|.*\.hh|.*\.[chi]pp|.*\.[chi]xx|.*\.ii")
|
|
|
|
list(APPEND CLANG_TIDY_SRCS ${conky_SRC_DIR}/${TMP_SRC})
|
|
|
|
endif()
|
|
|
|
endforeach(TMP_SRC)
|
|
|
|
|
|
|
|
get_target_property(CLANG_INCLUDES_tmp conky INCLUDE_DIRECTORIES)
|
|
|
|
foreach(TMP_INCLUDE ${CLANG_INCLUDES_tmp})
|
|
|
|
list(APPEND CLANG_INCLUDES -I${TMP_INCLUDE})
|
|
|
|
endforeach(TMP_INCLUDE)
|
|
|
|
|
|
|
|
add_custom_target(clang-tidy
|
|
|
|
COMMAND ${CLANG_TIDY_BIN} -config='' -fix -format-style=file
|
|
|
|
${CLANG_TIDY_SRCS}
|
|
|
|
-- -std=c++17 -I${CMAKE_BINARY_DIR} ${CLANG_INCLUDES})
|
|
|
|
add_custom_target(check-clang-tidy
|
|
|
|
COMMAND ${CLANG_TIDY_BIN} -config='' -format-style=file
|
|
|
|
${CLANG_TIDY_SRCS}
|
|
|
|
-- -std=c++17 -I${CMAKE_BINARY_DIR} ${CLANG_INCLUDES})
|