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
Education
Parley
Commits
715876b2
Verified
Commit
715876b2
authored
Aug 29, 2021
by
Alexander Lohnau
💬
Browse files
Utilize ECM utils for clang-format
parent
5adf1a92
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
715876b2
...
...
@@ -20,6 +20,7 @@ include(KDECMakeSettings)
include
(
ECMEnableSanitizers
)
include
(
FeatureSummary
)
include
(
KDEClangFormat
)
include
(
KDEGitCommitHooks
)
#Allows QString concatenation to use a single memory allocation per source line.
add_definitions
(
-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS
)
...
...
@@ -149,4 +150,10 @@ if (KF5DocTools_FOUND)
kdoctools_install
(
po
)
endif
()
install
(
FILES org.kde.parley.appdata.xml DESTINATION
${
KDE_INSTALL_METAINFODIR
}
)
# 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
}
)
kde_configure_git_pre_commit_hook
(
CHECKS CLANG_FORMAT
)
feature_summary
(
WHAT ALL INCLUDE_QUIET_PACKAGES 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