shift-shell/kcms/cellularnetwork/CMakeLists.txt
Devin Lin e147f98aea kcms: Move KCMs from plasma-settings
Having the KCMs that are mobile specific here makes more sense than in the settings application. Historically plasma-settings had a faster release cycle than Plasma, but the application is now moving to the Plasma release schedule and so it makes sense do this now.
2023-03-13 18:45:47 -07:00

26 lines
590 B
CMake

set (cellularnetworksettings_SRCS
cellularnetworksettings.cpp
modem.cpp
modemdetails.cpp
sim.cpp
mobileproviders.cpp
profilesettings.cpp
)
add_library(kcm_cellular_network MODULE ${cellularnetworksettings_SRCS})
target_link_libraries(kcm_cellular_network
Qt::DBus
Qt::Gui
Qt::Quick
Qt::Qml
Qt::Xml
KF6::Plasma
KF6::I18n
KF6::NetworkManagerQt
KF6::ModemManagerQt
KF6::QuickAddons
)
install(TARGETS kcm_cellular_network DESTINATION ${KDE_INSTALL_PLUGINDIR}/kcms)
kpackage_install_package(package kcm_cellular_network kcms)