mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
We use the Android APN list here in order to determine the APN settings from SIM information. Fixes https://invent.kde.org/plasma/plasma-mobile/-/issues/285 Address feedback
23 lines
693 B
CMake
23 lines
693 B
CMake
# SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
set(kded_plasma_mobile_autodetect_apn_SRCS
|
|
autodetectapn.cpp
|
|
)
|
|
|
|
kcoreaddons_add_plugin(kded_plasma_mobile_autodetect_apn SOURCES ${kded_plasma_mobile_autodetect_apn_SRCS} INSTALL_NAMESPACE "kf6/kded")
|
|
|
|
install(FILES android/apns-full-conf.xml DESTINATION ${KDE_INSTALL_DATADIR}/plasma-mobile-apn-info)
|
|
|
|
target_link_libraries(kded_plasma_mobile_autodetect_apn PRIVATE
|
|
Qt::Core
|
|
Qt::Xml
|
|
KF6::DBusAddons
|
|
KF6::ConfigWidgets
|
|
KF6::KIOGui
|
|
KF6::JobWidgets
|
|
KF6::Package
|
|
KF6::NetworkManagerQt
|
|
KF6::ModemManagerQt
|
|
QCoro::DBus
|
|
)
|