plasma-framework/examples/dataengines/customDataContainers/CMakeLists.txt
2015-01-10 17:47:31 +00:00

18 lines
666 B
CMake

set(customDataContainers_SRCS
customDataContainersEngine.cpp
httpContainer.cpp
)
add_library(plasma_dataengine_example_customDataContainers MODULE ${customDataContainers_SRCS})
kcoreaddons_desktop_to_json(plasma_dataengine_example_customDataContainers plasma-dataengine-example-customDataContainers.desktop)
target_link_libraries(plasma_dataengine_example_customDataContainers
KF5::Plasma
KF5::KIOCore
KF5::Service
)
install(TARGETS plasma_dataengine_example_customDataContainers DESTINATION ${KDE_INSTALL_PLUGINDIR}/plasma/dataengine)
install(FILES plasma-dataengine-example-customDataContainers.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} )