Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
KAccounts Providers
Commits
58d194d3
Commit
58d194d3
authored
Jan 17, 2021
by
Nicolas Fella
Browse files
Fix build with KF 5.78
kde_configure_git_pre_commit_hook is only available in unreleased KF5
parent
804302c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
58d194d3
...
...
@@ -28,7 +28,10 @@ include(FeatureSummary)
include
(
ECMInstallIcons
)
include
(
KDEFrameworkCompilerSettings NO_POLICY_SCOPE
)
include
(
KDEClangFormat
)
include
(
KDEGitCommitHooks
)
if
(
KF5_VERSION VERSION_GREATER_EQUAL 5.79
)
include
(
KDEGitCommitHooks
)
endif
()
add_subdirectory
(
services
)
add_subdirectory
(
providers
)
...
...
@@ -38,6 +41,8 @@ add_subdirectory(plugins)
file
(
GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h
)
kde_clang_format
(
${
ALL_CLANG_FORMAT_SOURCE_FILES
}
)
kde_configure_git_pre_commit_hook
(
CHECKS CLANG_FORMAT
)
if
(
KF5_VERSION VERSION_GREATER_EQUAL 5.79
)
kde_configure_git_pre_commit_hook
(
CHECKS CLANG_FORMAT
)
endif
()
feature_summary
(
WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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