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
Education
KAlgebra
Commits
24e55ccd
Commit
24e55ccd
authored
Sep 01, 2022
by
Laurent Montel
Browse files
Fix qt6 support
parent
09e97143
Pipeline
#225700
passed with stage
in 47 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
mobile/CMakeLists.txt
View file @
24e55ccd
...
...
@@ -15,13 +15,13 @@ set(DESKTOPFILE_INSTALL ${KDE_INSTALL_APPDIR})
if
(
ANDROID
)
# Material requires QtSvg for icons
# if we don't link it here explicitly, androiddeployqt doesn't bring it
find_package
(
Qt
5
Svg REQUIRED
)
find_package
(
Qt
5
QuickControls2 REQUIRED
)
find_package
(
Qt
${
QT_MAJOR_VERSION
}
Svg REQUIRED
)
find_package
(
Qt
${
QT_MAJOR_VERSION
}
QuickControls2 REQUIRED
)
find_package
(
KF5Kirigami2 REQUIRED
)
kirigami_package_breeze_icons
(
ICONS list-add
)
target_link_libraries
(
kalgebramobile Qt::Svg KF5::Kirigami2 Qt::QuickControls2
)
else
()
find_package
(
Qt
5
Widgets REQUIRED
)
find_package
(
Qt
${
QT_MAJOR_VERSION
}
Widgets REQUIRED
)
target_link_libraries
(
kalgebramobile Qt::Widgets
)
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