kdeconnect-kde/tests/CMakeLists.txt

19 lines
588 B
CMake
Raw Normal View History

find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} REQUIRED COMPONENTS Test)
2013-09-02 02:23:34 +01:00
set(kdeconnect_libraries
kdeconnectcore
kdeconnectversion
2023-04-15 11:57:52 +01:00
KF${QT_MAJOR_VERSION}::I18n
Qt::DBus
Qt::Network
Qt::Test
)
2013-09-02 02:23:34 +01:00
2023-04-15 12:24:48 +01:00
if(KF5KIO_FOUND OR KF6KIO_FOUND)
2023-04-15 11:57:52 +01:00
list(APPEND kdeconnect_libraries KF${QT_MAJOR_VERSION}::KIOWidgets)
endif()
ecm_add_test(pluginloadtest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
ecm_add_test(sendfiletest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
2020-03-21 22:44:13 +00:00
ecm_add_test(testsocketlinereader.cpp TEST_NAME testsocketlinereader LINK_LIBRARIES ${kdeconnect_libraries})