2008-11-04 00:08:39 +01:00
|
|
|
project(plasma_testengine_dataengine)
|
|
|
|
|
2009-01-04 19:15:55 +01:00
|
|
|
find_package(KDE4 REQUIRED)
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
include(KDE4Defaults)
|
|
|
|
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}
|
|
|
|
${CMAKE_BINARY_DIR}
|
2009-01-04 19:15:55 +01:00
|
|
|
${KDE4_INCLUDES})
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
set(testengine_engine_SRCS
|
|
|
|
testengine.cpp)
|
|
|
|
|
|
|
|
kde4_add_plugin(plasma_engine_testengine
|
|
|
|
${testengine_engine_SRCS})
|
|
|
|
|
|
|
|
target_link_libraries(plasma_engine_testengine
|
|
|
|
${KDE4_KIO_LIBS}
|
2009-01-04 19:15:55 +01:00
|
|
|
${KDE4_PLASMA_LIBS})
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
install(TARGETS plasma_engine_testengine DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
install(FILES plasma-dataengine-testengine.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|