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
18 lines
440 B
CMake
18 lines
440 B
CMake
# SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(kded_plasma_mobile_start_SRCS
|
|
start.cpp
|
|
)
|
|
|
|
kcoreaddons_add_plugin(kded_plasma_mobile_start SOURCES ${kded_plasma_mobile_start_SRCS} INSTALL_NAMESPACE "kf6/kded")
|
|
|
|
target_link_libraries(kded_plasma_mobile_start PRIVATE
|
|
Qt::Core
|
|
KF6::DBusAddons
|
|
KF6::ConfigWidgets
|
|
KF6::KIOGui
|
|
KF6::JobWidgets
|
|
KF6::Package
|
|
)
|
|
|