Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Angelfish
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
9
Issues
9
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Plasma Mobile
Angelfish
Commits
ffc42c5f
Verified
Commit
ffc42c5f
authored
Apr 01, 2020
by
Jonah Brüchert
🌳
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make building the webapp container mandatory
As otherwise desktop files generated by angelfish won't work.
parent
ebacbd7b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
CMakeLists.txt
CMakeLists.txt
+3
-6
angelfish-webapp/CMakeLists.txt
angelfish-webapp/CMakeLists.txt
+0
-2
No files found.
CMakeLists.txt
View file @
ffc42c5f
...
...
@@ -5,7 +5,6 @@ set(KF5_MIN_VERSION "5.18.0")
set
(
QT_MIN_VERSION
"5.5.0"
)
option
(
BUILD_TESTING
"Build test programs"
ON
)
option
(
BUILD_WEBAPP_CONTAINER
"Build webapp container"
ON
)
################# Disallow in-source build #################
...
...
@@ -33,7 +32,7 @@ include(KDECompilerSettings NO_POLICY_SCOPE)
################# Find dependencies #################
find_package
(
Qt5
${
QT_MIN_VERSION
}
REQUIRED NO_MODULE COMPONENTS Core Quick Test Gui Svg QuickControls2 Sql
)
find_package
(
KF5
${
KF5_MIN_VERSION
}
REQUIRED COMPONENTS Kirigami2 Purpose I18n Config
)
find_package
(
KF5
${
KF5_MIN_VERSION
}
REQUIRED COMPONENTS Kirigami2 Purpose I18n Config
CoreAddons
)
# Necessary to support QtWebEngine installed in a different prefix than the rest of Qt (e.g flatpak)
find_package
(
Qt5WebEngine REQUIRED
)
...
...
@@ -48,9 +47,7 @@ add_subdirectory(src)
if
(
BUILD_TESTING
)
add_subdirectory
(
autotests
)
endif
()
if
(
BUILD_WEBAPP_CONTAINER
)
add_subdirectory
(
angelfish-webapp
)
endif
()
add_subdirectory
(
angelfish-webapp
)
install
(
PROGRAMS org.kde.mobile.angelfish.desktop DESTINATION
${
KDE_INSTALL_APPDIR
}
)
install
(
FILES org.kde.mobile.angelfish.appdata.xml DESTINATION
${
KDE_INSTALL_METAINFODIR
}
)
...
...
angelfish-webapp/CMakeLists.txt
View file @
ffc42c5f
find_package
(
KF5 REQUIRED COMPONENTS CoreAddons
)
set
(
angelfish_webapp_SRCS
main.cpp
../src/browsermanager.cpp
...
...
Write
Preview
Markdown
is supported
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