Add app icons for windows build

Closes #26
This commit is contained in:
Bart De Vries 2022-06-30 22:00:32 +02:00
parent 5f94b4a357
commit 1043f4a63e
9 changed files with 14 additions and 1 deletions

View File

@ -14,7 +14,7 @@ Files: android/res/drawable/splash.xml
Copyright: 2020 Tobias Fella <fella@posteo.de>
License: BSD-2-Clause
Files: kasts.svg kasts-android-square.svg logo.png android/ic_launcher-playstore.png android/res/drawable/kasts.png android/res/drawable-v24/ic_launcher_background.xml android/res/drawable-v24/ic_launcher_foreground.xml android/res/mipmap-hdpi/ic_launcher.png android/res/mipmap-mdpi/ic_launcher.png android/res/mipmap-xhdpi/ic_launcher.png android/res/mipmap-xxhdpi/ic_launcher.png android/res/mipmap-xxxhdpi/ic_launcher.png
Files: kasts.svg kasts-android-square.svg logo.png android/ic_launcher-playstore.png android/res/drawable/kasts.png android/res/drawable-v24/ic_launcher_background.xml android/res/drawable-v24/ic_launcher_foreground.xml android/res/mipmap-hdpi/ic_launcher.png android/res/mipmap-mdpi/ic_launcher.png android/res/mipmap-xhdpi/ic_launcher.png android/res/mipmap-xxhdpi/ic_launcher.png android/res/mipmap-xxxhdpi/ic_launcher.png icons/16-apps-kasts.png icons/24-apps-kasts.png icons/32-apps-kasts.png icons/48-apps-kasts.png icons/64-apps-kasts.png icons/128-apps-kasts.png
Copyright: 2021 Mathis Brüchert <mbblp@protonmail.ch>
License: CC-BY-SA-4.0

View File

@ -27,6 +27,7 @@ include(KDEInstallDirs)
include(KDEGitCommitHooks)
include(KDECMakeSettings)
include(KDECompilerSettings NO_POLICY_SCOPE)
include(ECMAddAppIcon)
if(NOT ANDROID)
include(KDEClangFormat)
endif()

BIN
icons/128-apps-kasts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
icons/16-apps-kasts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 786 B

BIN
icons/24-apps-kasts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
icons/32-apps-kasts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
icons/48-apps-kasts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
icons/64-apps-kasts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -147,6 +147,18 @@ else()
qt_add_dbus_interface(SRCS dbus-interfaces/org.gnome.SessionManager.xml gnomesessioninterface)
endif()
set(kasts_ICONS_PNG
../icons/16-apps-kasts.png
../icons/24-apps-kasts.png
../icons/32-apps-kasts.png
../icons/48-apps-kasts.png
../icons/64-apps-kasts.png
../icons/128-apps-kasts.png
)
# add icons to application sources, to have them bundled
ecm_add_app_icon(SRCS ICONS ${kasts_ICONS_PNG})
add_executable(kasts ${SRCS})
kconfig_add_kcfg_files(kasts settingsmanager.kcfgc GENERATE_MOC)