plasma-framework/examples/dataengines/simpleEngine/CMakeLists.txt
Martin Klapetek 3214bd8132 Add KF5 prefix to plasma framework
This changes the lib name and package names to follow other frameworks

libFoo -> libKF5Foo
find_package(KFoo) -> find_package(KF5Foo)

REVIEW: 114389
2013-12-11 21:40:54 +01:00

17 lines
497 B
CMake

set(simpleEngine_SRCS
simpleEngine.cpp
)
kservice_desktop_to_json(plasma-dataengine-example-simpleEngine.desktop)
add_library(plasma_dataengine_example_simpleEngine MODULE ${simpleEngine_SRCS})
target_link_libraries(plasma_dataengine_example_simpleEngine
KF5::Plasma
KF5::KService
KF5::KI18n
)
install(TARGETS plasma_dataengine_example_simpleEngine DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES plasma-dataengine-example-simpleEngine.desktop DESTINATION ${SERVICES_INSTALL_DIR} )