diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-11-24 19:49:27 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-17 09:17:54 -0800 |
commit | a883fce6129d053193917f2346e17f84dda3af13 (patch) | |
tree | cb8bddca0eea2521f5642e6253fca41e2e939a24 | |
parent | d9d3588d55b4a7e10a5ecaa0b22c7532db624c32 (diff) | |
download | subsurface-a883fce6129d053193917f2346e17f84dda3af13.tar.gz |
mobile: re-add breeze icons
This time from the cloned repo.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | mobile-widgets/3rdparty/icons.qrc | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b9d89436..9b0ae88b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -345,6 +345,7 @@ if (SUBSURFACE_TARGET_EXECUTABLE MATCHES "MobileExecutable") subsurface-helper.cpp ) qt5_add_resources(MOBILE_RESOURCES mobile-widgets/qml/mobile-resources.qrc) + qt5_add_resources(MOBILE_RESOURCES mobile-widgets/3rdparty/icons.qrc) # the following is split across two commands since in cmake 3.12 this would result # in a non-sensical "no sources given to target" error if done all as one set of diff --git a/mobile-widgets/3rdparty/icons.qrc b/mobile-widgets/3rdparty/icons.qrc new file mode 100644 index 000000000..89cc574e8 --- /dev/null +++ b/mobile-widgets/3rdparty/icons.qrc @@ -0,0 +1,25 @@ +<RCC> + <qresource prefix="/"> + <!-- ********** Breeze icons that we use (directly or through Kirigami) ********** --> + <file alias="/org/kde/kirigami/templates/private/go-next-symbolic">breeze-icons/icons/actions/24/go-next.svg</file> + <file alias="/org/kde/kirigami/templates/private/go-previous-symbolic">breeze-icons/icons/actions/24/go-previous.svg</file> + <file alias="go-next-symbolic">breeze-icons/icons/actions/24/go-next.svg</file> + <file alias="go-previous-symbolic">breeze-icons/icons/actions/24/go-previous.svg</file> + <file alias="icons/application-menu.svg">breeze-icons/icons/actions/24/application-menu.svg</file> + <file alias="icons/dialog-cancel.svg">breeze-icons/icons/actions/24/dialog-cancel.svg</file> + <file alias="icons/distribute-horizontal-x.svg">breeze-icons/icons/actions/24/distribute-horizontal-x.svg</file> + <file alias="icons/document-edit.svg">breeze-icons/icons-dark/actions/24/document-edit.svg</file> + <file alias="icons/document-save.svg">breeze-icons/icons-dark/actions/24/document-save.svg</file> + <file alias="icons/go-up.svg">breeze-icons/icons/actions/24/go-up.svg</file> + <file alias="icons/gps.svg">breeze-icons/icons/actions/22/gps.svg</file> + <file alias="icons/handle-left.svg">breeze-icons/icons/actions/22/handle-left.svg</file> + <file alias="icons/handle-right.svg">breeze-icons/icons/actions/22/handle-right.svg</file> + <file alias="icons/map-globe.svg">breeze-icons/icons/actions/22/map-globe.svg</file> + <file alias="icons/list-add.svg">breeze-icons/icons/actions/24/list-add.svg</file> + <file alias="icons/overflow-menu.svg">breeze-icons/icons/actions/22/overflow-menu.svg</file> + <file alias="icons/trash-empty.svg">breeze-icons/icons/actions/24/trash-empty.svg</file> + <file alias="icons/edit-copy.svg">breeze-icons/icons/actions/24/edit-copy.svg</file> + <file alias="icons/edit-paste.svg">breeze-icons/icons/actions/24/edit-paste.svg</file> + <file alias="icons/view-readermode.svg">breeze-icons/icons/actions/16/view-readermode.svg</file> + </qresource> +</RCC> |