5796b561bf
Since sockets are buffered `QIODevices` we can use `canReadLine()` to check if we have a full line, instead of using a custom `SocketLineReader` class (and the copy-pasted `DeviceLineReader` in the Bluetooth backend). We can also loop through all the lines instead of queuing calls to `dataReceived`. And we don't need transactions.
17 lines
430 B
CMake
17 lines
430 B
CMake
find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} REQUIRED COMPONENTS Test)
|
|
|
|
set(kdeconnect_libraries
|
|
kdeconnectcore
|
|
kdeconnectversion
|
|
KF5::I18n
|
|
Qt::DBus
|
|
Qt::Network
|
|
Qt::Test
|
|
)
|
|
|
|
if(${KF5KIO_FOUND})
|
|
list(APPEND kdeconnect_libraries KF5::KIOWidgets)
|
|
endif()
|
|
|
|
ecm_add_test(pluginloadtest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|
|
ecm_add_test(sendfiletest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|