Use KF5::AuthCore instead of KF5::Auth

It's a much smaller library and provides everything we need
This commit is contained in:
Albert Astals Cid 2019-02-16 00:24:15 +01:00
parent ecb78121f3
commit 90a6563291
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
# Dependencies
set(QT_MIN_VERSION "5.10.0")
set(KF5_MIN_VERSION "5.25")
set(KF5_MIN_VERSION "5.56")
set(BLKID_MIN_VERSION "2.32")
# Qca-qt5 (tested with botan and ossl backends)

View File

@ -49,7 +49,7 @@ target_link_libraries( kpmcore PUBLIC
KF5::I18n
KF5::CoreAddons
KF5::WidgetsAddons
KF5::Auth
KF5::AuthCore
)
install(TARGETS kpmcore EXPORT KPMcoreTargets ${INSTALL_TARGETS_DEFAULT_ARGS})

View File

@ -45,7 +45,7 @@ target_link_libraries(kpmcore_externalcommand
qca-qt5
Qt5::Core
Qt5::DBus
KF5::Auth
KF5::AuthCore
KF5::I18n
)