Compare commits

...

2 commits

Author SHA1 Message Date
Weixuan XIAO
b51d001239 Complete missing icons 2019-07-21 19:38:57 +02:00
Aleix Pol
3f9e8b9340 Use kirigami_package_breeze_icons to save the icons on Apple
Otherwise we'd get nothing
2019-07-21 17:48:23 +02:00
2 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,12 @@
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 hands-free
audio-volume-muted network-disconnect list-add audio-volume-low audio-volume-medium audio-volume-high
)
endif()
qt5_add_resources(kdeconnect_SRCS resources.qrc) qt5_add_resources(kdeconnect_SRCS resources.qrc)
add_executable(kdeconnect main.cpp ${kdeconnect_SRCS}) 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 kdeconnect-sms ${INSTALL_TARGETS_DEFAULT_ARGS})
install(TARGETS kdeconnectsmshelper ${INSTALL_TARGETS_DEFAULT_ARGS} LIBRARY NAMELINK_SKIP) install(TARGETS kdeconnectsmshelper ${INSTALL_TARGETS_DEFAULT_ARGS} LIBRARY NAMELINK_SKIP)
install(PROGRAMS org.kde.kdeconnect.sms.desktop DESTINATION ${KDE_INSTALL_APPDIR}) install(PROGRAMS org.kde.kdeconnect.sms.desktop DESTINATION ${KDE_INSTALL_APPDIR})
if(APPLE)
kirigami_package_breeze_icons(ICONS
view-refresh help-about dialog-cancel
)
endif()