Use kirigami_package_breeze_icons to save the icons on Apple

Otherwise we'd get nothing
This commit is contained in:
Aleix Pol 2019-07-21 17:48:23 +02:00
parent bc468f1e07
commit 3f9e8b9340
2 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,11 @@
if(APPLE)
kirigami_package_breeze_icons(ICONS
network-connect dialog-ok dialog-cancel dialog-ok-apply entry-edit input-mouse-click-left input-mouse-click-middle input-mouse-click-right
media-skip-backward media-playback-pause media-playback-start media-skip-forward view-fullscreen
document-edit player-volume-muted player-volume view-refresh help-about
)
endif()
qt5_add_resources(kdeconnect_SRCS resources.qrc)
add_executable(kdeconnect main.cpp ${kdeconnect_SRCS})

View file

@ -50,3 +50,9 @@ target_link_libraries(kdeconnect-sms
install(TARGETS kdeconnect-sms ${INSTALL_TARGETS_DEFAULT_ARGS})
install(TARGETS kdeconnectsmshelper ${INSTALL_TARGETS_DEFAULT_ARGS} LIBRARY NAMELINK_SKIP)
install(PROGRAMS org.kde.kdeconnect.sms.desktop DESTINATION ${KDE_INSTALL_APPDIR})
if(APPLE)
kirigami_package_breeze_icons(ICONS
view-refresh help-about
)
endif()