plasma-framework/examples/dataengines/customDataContainers/CMakeLists.txt
2014-02-10 19:16:44 +01:00

18 lines
655 B
CMake

set(customDataContainers_SRCS
customDataContainersEngine.cpp
httpContainer.cpp
)
add_library(plasma_dataengine_example_customDataContainers MODULE ${customDataContainers_SRCS})
kservice_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 ${PLUGIN_INSTALL_DIR}/plasma/dataengine)
install(FILES plasma-dataengine-example-customDataContainers.desktop DESTINATION ${SERVICES_INSTALL_DIR} )