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
Accessibility
Kontrast
Commits
a31e63f3
Commit
a31e63f3
authored
Sep 16, 2022
by
Nicolas Fella
Browse files
Don't install docs on Android
parent
9667712a
Pipeline
#233216
failed with stage
in 1 minute and 7 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
.kde-ci.yml
View file @
a31e63f3
...
...
@@ -8,6 +8,9 @@ Dependencies:
'
frameworks/kirigami'
:
'
@stable'
'
frameworks/ki18n'
:
'
@stable'
'
frameworks/kcoreaddons'
:
'
@stable'
-
'
on'
:
[
'
Linux'
,
'
FreeBSD'
,
'
Windows'
]
'
require'
:
'
frameworks/kdoctools'
:
'
@stable'
Options
:
...
...
CMakeLists.txt
View file @
a31e63f3
...
...
@@ -39,10 +39,11 @@ ecm_setup_version(${PROJECT_VERSION}
################# Find dependencies #################
find_package
(
Qt
${
QT_MAJOR_VERSION
}
${
QT_MIN_VERSION
}
REQUIRED COMPONENTS Core Gui Qml QuickControls2 Svg Sql
)
find_package
(
KF5
${
KF5_MIN_VERSION
}
REQUIRED COMPONENTS Kirigami2 I18n CoreAddons
DocTools
)
find_package
(
KF5
${
KF5_MIN_VERSION
}
REQUIRED COMPONENTS Kirigami2 I18n CoreAddons
)
if
(
NOT ANDROID
)
find_package
(
Qt
${
QT_MAJOR_VERSION
}
${
QT_MIN_VERSION
}
REQUIRED COMPONENTS DBus Widgets
)
find_package
(
KF5DocTools
${
KF5_MIN_VERSION
}
REQUIRED
)
endif
()
################# build and install #################
...
...
@@ -52,7 +53,10 @@ add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
add_definitions
(
-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00
)
add_subdirectory
(
src
)
add_subdirectory
(
doc
)
if
(
NOT ANDROID
)
add_subdirectory
(
doc
)
endif
()
install
(
PROGRAMS org.kde.kontrast.desktop DESTINATION
${
KDE_INSTALL_APPDIR
}
)
install
(
FILES org.kde.kontrast.appdata.xml DESTINATION
${
KDE_INSTALL_METAINFODIR
}
)
...
...
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