2018-01-10 12:54:24 +03:00
|
|
|
# get all project files
|
|
|
|
file(GLOB_RECURSE ALL_SOURCE_FILES *.cpp *.c *.h *.m *.java)
|
|
|
|
# minimum version required
|
2024-01-23 17:11:42 +03:00
|
|
|
set(_CLANG_FORMAT_MINIMUM_VERSION 10.0.0)
|
2018-01-10 12:54:24 +03:00
|
|
|
|
|
|
|
find_program(CLANG_FORMAT
|
|
|
|
NAMES
|
2024-01-23 17:11:42 +03:00
|
|
|
clang-format-20
|
|
|
|
clang-format-19
|
|
|
|
clang-format-18
|
|
|
|
clang-format-17
|
|
|
|
clang-format-16
|
|
|
|
clang-format-15
|
|
|
|
clang-format-14
|
|
|
|
clang-format-13
|
|
|
|
clang-format-12
|
|
|
|
clang-format-11
|
|
|
|
clang-format-10
|
2018-01-10 12:54:24 +03:00
|
|
|
clang-format
|
|
|
|
)
|
|
|
|
|
|
|
|
if (NOT CLANG_FORMAT)
|
|
|
|
message(WARNING "clang-format not found in path! code format target not available.")
|
|
|
|
else()
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${CLANG_FORMAT} "--version"
|
|
|
|
OUTPUT_VARIABLE _CLANG_FORMAT_VERSION
|
|
|
|
RESULT_VARIABLE _CLANG_FORMAT_VERSION_FAILED
|
|
|
|
)
|
|
|
|
|
|
|
|
if (_CLANG_FORMAT_VERSION_FAILED)
|
|
|
|
message(WARNING "A problem was encounterd with ${CLANG_FORMAT}")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
string(REGEX MATCH "([7-9]|[1-9][0-9])\\.[0-9]\\.[0-9]" CLANG_FORMAT_VERSION
|
|
|
|
"${_CLANG_FORMAT_VERSION}")
|
|
|
|
|
|
|
|
if (NOT CLANG_FORMAT_VERSION)
|
2021-09-17 08:24:49 +03:00
|
|
|
message(WARNING "problem parsing clang-format version for ${CLANG_FORMAT}")
|
2018-01-10 12:54:24 +03:00
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (${CLANG_FORMAT_VERSION} VERSION_LESS ${_CLANG_FORMAT_MINIMUM_VERSION})
|
|
|
|
message(WARNING "clang-format version ${CLANG_FORMAT_VERSION} not supported")
|
|
|
|
message(WARNING "Minimum version required: ${_CLANG_FORMAT_MINIMUM_VERSION}")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_custom_target(
|
|
|
|
clangformat
|
|
|
|
COMMAND ${CLANG_FORMAT}
|
|
|
|
-style=file
|
|
|
|
-i
|
|
|
|
${ALL_SOURCE_FILES}
|
|
|
|
)
|
|
|
|
endif()
|