2015-09-07 16:42:37 +01:00
|
|
|
find_package(Qt5 REQUIRED COMPONENTS Test)
|
2016-01-07 16:37:35 +00:00
|
|
|
find_package(KF5 REQUIRED COMPONENTS KIO Notifications IconThemes)
|
2015-04-10 16:48:48 +01:00
|
|
|
|
2013-09-01 21:13:03 +01:00
|
|
|
include_directories(
|
2014-06-14 13:31:31 +01:00
|
|
|
${KDEConnectCore_BINARY_DIR}
|
2014-06-14 14:22:40 +01:00
|
|
|
${CMAKE_SOURCE_DIR}
|
2013-09-01 21:13:03 +01:00
|
|
|
)
|
|
|
|
|
2013-09-02 02:23:34 +01:00
|
|
|
set(kdeconnect_libraries
|
2015-03-10 04:59:36 +00:00
|
|
|
kdeconnectcore
|
2015-08-12 19:12:27 +01:00
|
|
|
KF5::I18n
|
2014-06-16 19:02:07 +01:00
|
|
|
KF5::KIOWidgets
|
2015-08-12 19:12:27 +01:00
|
|
|
Qt5::DBus
|
2014-06-16 19:02:07 +01:00
|
|
|
Qt5::Network
|
|
|
|
Qt5::Test
|
2015-01-16 05:35:30 +00:00
|
|
|
qca-qt5
|
2013-09-01 21:13:03 +01:00
|
|
|
)
|
2013-09-02 02:23:34 +01:00
|
|
|
|
2015-09-08 16:28:47 +01:00
|
|
|
ecm_add_test(pluginloadtest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|
2015-09-07 13:54:33 +01:00
|
|
|
ecm_add_test(sendfiletest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|
2014-06-16 19:02:07 +01:00
|
|
|
ecm_add_test(networkpackagetests.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|
2015-11-30 11:40:07 +00:00
|
|
|
|
2015-07-05 14:23:53 +01:00
|
|
|
ecm_add_test(testsocketlinereader.cpp ../core/backends/lan/socketlinereader.cpp ../core/backends/lan/server.cpp TEST_NAME testsocketlinereader LINK_LIBRARIES ${kdeconnect_libraries})
|
2015-08-12 19:12:27 +01:00
|
|
|
|
|
|
|
set(testsslsocketlinereader_sources
|
|
|
|
../core/backends/lan/server.cpp
|
|
|
|
../core/backends/lan/socketlinereader.cpp
|
|
|
|
)
|
|
|
|
ecm_add_test(testsslsocketlinereader.cpp ${testsslsocketlinereader_sources} TEST_NAME testsslsocketlinereader LINK_LIBRARIES ${kdeconnect_libraries})
|
|
|
|
|
|
|
|
set(kdeconnectconfigtest_sources
|
2015-12-05 23:08:02 +00:00
|
|
|
../core/backends/devicelink.cpp
|
2015-08-12 19:12:27 +01:00
|
|
|
../core/backends/pairinghandler.cpp
|
|
|
|
../core/dbushelper.cpp
|
|
|
|
../core/device.cpp
|
|
|
|
../core/pluginloader.cpp
|
|
|
|
)
|
2015-12-05 23:08:02 +00:00
|
|
|
ecm_add_test(kdeconnectconfigtest.cpp ${kdeconnectconfigtest_sources} TEST_NAME kdeconnectconfigtest LINK_LIBRARIES ${kdeconnect_libraries})
|
2015-08-12 19:12:27 +01:00
|
|
|
|
|
|
|
set(lanlinkprovidertest_sources
|
|
|
|
../core/backends/devicelink.cpp
|
|
|
|
../core/backends/lan/downloadjob.cpp
|
|
|
|
../core/backends/lan/landevicelink.cpp
|
|
|
|
../core/backends/lan/lanlinkprovider.cpp
|
|
|
|
../core/backends/lan/lanpairinghandler.cpp
|
|
|
|
../core/backends/lan/server.cpp
|
|
|
|
../core/backends/lan/socketlinereader.cpp
|
|
|
|
../core/backends/lan/uploadjob.cpp
|
|
|
|
../core/backends/linkprovider.cpp
|
|
|
|
../core/backends/pairinghandler.cpp
|
|
|
|
../core/device.cpp
|
|
|
|
../core/pluginloader.cpp
|
2016-06-01 11:43:34 +01:00
|
|
|
../core/core_debug.cpp
|
2015-08-12 19:12:27 +01:00
|
|
|
)
|
|
|
|
ecm_add_test(lanlinkprovidertest.cpp ${lanlinkprovidertest_sources} TEST_NAME lanlinkprovidertest LINK_LIBRARIES ${kdeconnect_libraries})
|
2015-08-20 18:45:12 +01:00
|
|
|
|
|
|
|
ecm_add_test(devicetest.cpp ${lanlinkprovidertest_sources} TEST_NAME devicetest LINK_LIBRARIES ${kdeconnect_libraries})
|
2015-11-30 11:40:07 +00:00
|
|
|
|
2015-12-05 23:08:02 +00:00
|
|
|
ecm_add_test(downloadjobtest.cpp ../core/backends/lan/downloadjob.cpp TEST_NAME downloadjobtest LINK_LIBRARIES ${kdeconnect_libraries})
|
2015-12-05 22:13:34 +00:00
|
|
|
ecm_add_test(testnotificationlistener.cpp
|
2016-05-25 19:49:13 +01:00
|
|
|
../plugins/sendnotifications/sendnotificationsplugin.cpp
|
|
|
|
../plugins/sendnotifications/notificationslistener.cpp
|
|
|
|
../plugins/sendnotifications/notifyingapplication.cpp
|
2015-12-05 22:13:34 +00:00
|
|
|
TEST_NAME testnotificationlistener
|
2016-01-07 16:37:35 +00:00
|
|
|
LINK_LIBRARIES ${kdeconnect_libraries} Qt5::DBus KF5::Notifications KF5::IconThemes)
|