Add svg to allow app display svg graphics. Add test section for android to try and get icons working.

This commit is contained in:
2020-06-18 14:34:53 -04:00
parent ef21bd2284
commit 898d9c144b
3 changed files with 7 additions and 4 deletions

View File

@@ -7,5 +7,9 @@ set(vehiclevoyage_SRCS
qt5_add_resources(RESOURCES resources.qrc)
add_executable(vehiclevoyage ${vehiclevoyage_SRCS} ${RESOURCES})
target_link_libraries(vehiclevoyage Qt5::Core Qt5::Qml Qt5::Quick Qt5::Sql Qt5::Widgets KF5::CoreAddons)
target_link_libraries(vehiclevoyage Qt5::Core Qt5::Qml Qt5::Quick Qt5::Sql Qt5::Svg Qt5::Widgets KF5::CoreAddons)
install(TARGETS vehiclevoyage ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
if (CMAKE_SYSTEM_NAME STREQUAL "Android")
kirigami_package_breeze_icons(ICONS list-add application-javascript help-about edit-find edit-delete window-close)
endif()