Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
KDE CLI tools
Commits
e548857e
Commit
e548857e
authored
Dec 31, 2020
by
Alexander Lohnau
💬
Browse files
Add pre-commit hook for clang-format
parent
f819b19d
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
e548857e
...
...
@@ -24,6 +24,10 @@ include(CheckSymbolExists)
include
(
ECMOptionalAddSubdirectory
)
include
(
KDEClangFormat
)
if
(
ECM_VERSION VERSION_GREATER_EQUAL 5.79
)
include
(
KDEGitCommitHooks
)
endif
()
find_package
(
Qt5
${
QT_MIN_VERSION
}
CONFIG REQUIRED COMPONENTS
Widgets
Svg
...
...
@@ -112,4 +116,8 @@ configure_file (config-kde-cli-tools.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-
file
(
GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h
)
kde_clang_format
(
${
ALL_CLANG_FORMAT_SOURCE_FILES
}
)
if
(
ECM_VERSION VERSION_GREATER_EQUAL 5.79
)
kde_configure_git_pre_commit_hook
(
CHECKS CLANG_FORMAT
)
endif
()
feature_summary
(
WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment