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
Games
Katomic
Commits
62eeb1fa
Commit
62eeb1fa
authored
Dec 28, 2021
by
Laurent Montel
Browse files
Make doctool as optional
parent
2d7547bd
Pipeline
#115238
passed with stage
in 1 minute and 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
62eeb1fa
...
...
@@ -33,9 +33,12 @@ find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
I18n
XmlGui
NewStuff
DocTools
DBusAddons
)
find_package
(
KF5DocTools
${
KF5_MIN_VERSION
}
)
set_package_properties
(
KF5DocTools PROPERTIES DESCRIPTION
"Tools to generate documentation"
TYPE OPTIONAL
)
find_package
(
KF5KDEGames 7.3.0 REQUIRED
)
add_definitions
(
...
...
@@ -47,10 +50,12 @@ add_definitions(
add_subdirectory
(
levels
)
add_subdirectory
(
icons
)
add_subdirectory
(
doc
)
add_subdirectory
(
src
)
ki18n_install
(
po
)
kdoctools_install
(
po
)
if
(
KF5DocTools_FOUND
)
kdoctools_install
(
po
)
add_subdirectory
(
doc
)
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