plasma-framework/examples/dataengines/customDataContainers/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
677 B
CMake
Raw Normal View History

add_library(plasma_dataengine_example_customDataContainers MODULE)
target_sources(plasma_dataengine_example_customDataContainers PRIVATE
2013-09-04 11:48:06 +02:00
customDataContainersEngine.cpp
httpContainer.cpp
)
kcoreaddons_desktop_to_json(plasma_dataengine_example_customDataContainers plasma-dataengine-example-customDataContainers.desktop)
target_link_libraries(plasma_dataengine_example_customDataContainers
KF5::Plasma
KF5::KIOCore
2013-12-11 14:01:52 +01:00
KF5::Service
)
2013-09-04 11:48:06 +02:00
2015-01-10 18:47:31 +01:00
install(TARGETS plasma_dataengine_example_customDataContainers DESTINATION ${KDE_INSTALL_PLUGINDIR}/plasma/dataengine)
install(FILES plasma-dataengine-example-customDataContainers.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} )