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
Bluedevil
Commits
1b401a51
Commit
1b401a51
authored
Jan 16, 2021
by
Alexander Lohnau
💬
Browse files
Add pre-commit hook for clang-format
parent
39bbf9f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
1b401a51
...
...
@@ -51,6 +51,10 @@ if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
add_definitions
(
-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054200
)
endif
()
if
(
ECM_VERSION VERSION_GREATER_EQUAL 5.79
)
include
(
KDEGitCommitHooks
)
endif
()
ecm_setup_version
(
${
PROJECT_VERSION
}
VARIABLE_PREFIX BLUEDEVIL
VERSION_HEADER
${
CMAKE_BINARY_DIR
}
/version.h
...
...
@@ -65,3 +69,6 @@ feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
# add clang-format target for all our real source files
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
()
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