2015-01-15 17:07:43 +00:00
|
|
|
project(showdashboard)
|
|
|
|
|
|
|
|
add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
|
|
|
|
include_directories(
|
|
|
|
${CMAKE_SOURCE_DIR}
|
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
${KDE4_INCLUDES}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(showdashboard_SRCS showdashboard.cpp)
|
|
|
|
|
|
|
|
kde4_add_plugin(plasma_applet_showdashboard ${showdashboard_SRCS})
|
|
|
|
target_link_libraries(plasma_applet_showdashboard
|
|
|
|
${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS})
|
|
|
|
|
|
|
|
install(TARGETS plasma_applet_showdashboard
|
2020-02-08 18:39:41 +00:00
|
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR})
|
2015-01-15 17:07:43 +00:00
|
|
|
|
|
|
|
install(FILES plasma-applet-showdashboard.desktop
|
2020-02-08 18:39:41 +00:00
|
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR})
|
2015-01-15 17:07:43 +00:00
|
|
|
|