diff --git a/smsapp/smshelper.cpp b/smsapp/smshelper.cpp index e9142aa76..a02c2edfb 100644 --- a/smsapp/smshelper.cpp +++ b/smsapp/smshelper.cpp @@ -24,7 +24,6 @@ #include "interfaces/conversationmessage.h" #include "smsapp/gsmasciimap.h" -#include "smshelper_debug.h" QObject *SmsHelper::singletonProvider(QQmlEngine * /*engine*/, QJSEngine * /*scriptEngine*/) { diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9d90d86bc..096df93a2 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -2,16 +2,21 @@ find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} REQUIRED COMPONENTS Test) set(kdeconnect_libraries kdeconnectcore + kdeconnectinterfaces + kdeconnectsmshelper kdeconnectversion KF${QT_MAJOR_VERSION}::I18n KF${QT_MAJOR_VERSION}::KIOWidgets Qt::DBus Qt::Network + KF${QT_MAJOR_VERSION}::People + Qt::Qml Qt::Test ) 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}) diff --git a/tests/testsmshelper.cpp b/tests/smshelpertest.cpp similarity index 99% rename from tests/testsmshelper.cpp rename to tests/smshelpertest.cpp index aae5f4340..6c17dae8d 100644 --- a/tests/testsmshelper.cpp +++ b/tests/smshelpertest.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL */ -#include "smshelper.h" +#include "smsapp/smshelper.h" #include @@ -239,4 +239,4 @@ void SmsHelperTest::testEmptyInput() } QTEST_GUILESS_MAIN(SmsHelperTest); -#include "testsmshelper.moc" +#include "smshelpertest.moc"