caaac80ca5
SMS auth codes generate a notification that has a "Copy $code" button (eg. "Copy 123456"), but the button doesn't actually copy the code as expected. This patch fixes that. BUG: 451539 BUG: 435614
26 lines
710 B
CMake
26 lines
710 B
CMake
find_package(Qt6 ${QT_MIN_VERSION} REQUIRED COMPONENTS Test)
|
|
|
|
set(kdeconnect_libraries
|
|
kdeconnectcore
|
|
kdeconnectinterfaces
|
|
kdeconnectsmshelper
|
|
kdeconnectversion
|
|
KF6::GuiAddons
|
|
KF6::I18n
|
|
KF6::KIOWidgets
|
|
KF6::Notifications
|
|
Qt::DBus
|
|
Qt::Network
|
|
KF6::People
|
|
Qt::Qml
|
|
Qt::Test
|
|
)
|
|
|
|
ecm_add_test(notificationstest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|
|
ecm_add_test(pluginloadtest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|
|
ecm_add_test(sendfiletest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|
|
ecm_add_test(smshelpertest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|
|
|
|
if(MDNS_ENABLED)
|
|
ecm_add_test(mdnstest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|
|
endif()
|