f20f489999
Straight forward port from QJson to the native Json support. As a note I have added 2 helper functions that make the code bit more readable (object2qvariant and qvariatn2qobject).
16 lines
453 B
CMake
16 lines
453 B
CMake
include_directories(
|
|
${QCA2_INCLUDE_DIR}
|
|
${KDEConnectCore_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}
|
|
)
|
|
|
|
set(kdeconnect_libraries
|
|
KF5::KIOWidgets
|
|
Qt5::Network
|
|
${QCA2_LIBRARIES}
|
|
Qt5::Test
|
|
kdeconnectcore
|
|
)
|
|
|
|
ecm_add_test(networkpackagetests.cpp LINK_LIBRARIES ${kdeconnect_libraries})
|
|
ecm_add_test(testsocketlinereader.cpp ../core/backends/lan/socketlinereader.cpp TEST_NAME testsocketlinereader LINK_LIBRARIES ${kdeconnect_libraries})
|