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
KSquares
Commits
0b2e3b38
Commit
0b2e3b38
authored
Nov 28, 2022
by
Friedrich W. H. Kossebau
Browse files
Fix mismatch of name for KF min version variable
Fixup for
8440ab79
parent
6ba605ba
Pipeline
#276247
passed with stage
in 2 minutes and 33 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
0b2e3b38
...
...
@@ -11,7 +11,7 @@ project(ksquares VERSION "0.6.${RELEASE_SERVICE_COMPACT_VERSION}")
set
(
QT_MIN_VERSION
"5.15.2"
)
set
(
KF_MIN_VERSION
"5.90.0"
)
find_package
(
ECM
${
KF
5
_MIN_VERSION
}
REQUIRED CONFIG
)
find_package
(
ECM
${
KF_MIN_VERSION
}
REQUIRED CONFIG
)
set
(
CMAKE_MODULE_PATH
${
CMAKE_MODULE_PATH
}
${
ECM_MODULE_PATH
}
)
include
(
KDEInstallDirs
)
...
...
@@ -26,7 +26,7 @@ include(FeatureSummary)
find_package
(
Qt
${
QT_MAJOR_VERSION
}
${
QT_MIN_VERSION
}
REQUIRED NO_MODULE COMPONENTS Widgets
)
find_package
(
KF5
${
KF
5
_MIN_VERSION
}
REQUIRED COMPONENTS
find_package
(
KF5
${
KF_MIN_VERSION
}
REQUIRED COMPONENTS
Config
ConfigWidgets
CoreAddons
...
...
@@ -36,7 +36,7 @@ find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
WidgetsAddons
XmlGui
)
find_package
(
KF5DocTools
${
KF
5
_MIN_VERSION
}
)
find_package
(
KF5DocTools
${
KF_MIN_VERSION
}
)
set_package_properties
(
KF5DocTools PROPERTIES DESCRIPTION
"Tools to generate documentation"
TYPE OPTIONAL
...
...
Friedrich W. H. Kossebau
@kossebau
mentioned in merge request
!7 (closed)
·
Nov 28, 2022
mentioned in merge request
!7 (closed)
mentioned in merge request !7
Toggle commit list
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