2023-06-10 19:40:14 +03:00
|
|
|
include_directories(
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
)
|
2014-12-27 19:00:04 +00:00
|
|
|
|
2023-06-10 19:40:14 +03:00
|
|
|
set(testplugin_SRCS
|
|
|
|
testviewfactory.cpp
|
|
|
|
testview.cpp
|
|
|
|
)
|
2014-12-27 19:00:04 +00:00
|
|
|
|
2023-06-10 19:40:14 +03:00
|
|
|
kde4_add_plugin(krdc_testplugin ${testplugin_SRCS})
|
2014-12-27 19:00:04 +00:00
|
|
|
|
2023-06-10 19:40:14 +03:00
|
|
|
target_link_libraries(krdc_testplugin
|
2023-06-17 23:28:51 +03:00
|
|
|
KDE4::kdecore
|
|
|
|
KDE4::kdeui
|
2023-06-10 19:40:14 +03:00
|
|
|
krdccore
|
|
|
|
)
|
|
|
|
install(TARGETS krdc_testplugin DESTINATION ${KDE4_PLUGIN_INSTALL_DIR})
|
2014-12-27 19:00:04 +00:00
|
|
|
|
2023-06-10 19:40:14 +03:00
|
|
|
install(FILES krdc_test.desktop DESTINATION ${KDE4_SERVICES_INSTALL_DIR})
|