002848efa8
This is complicated by the Qt 5.6 requirement of SailfishOS, hopefully that didn't get broken by this.
18 lines
539 B
CMake
18 lines
539 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})
|
|
ecm_add_test(testsocketlinereader.cpp TEST_NAME testsocketlinereader LINK_LIBRARIES ${kdeconnect_libraries})
|