mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
14 lines
414 B
CMake
14 lines
414 B
CMake
project(life)
|
|
|
|
set(life_SRCS life.cpp lifeConfig.ui)
|
|
kde4_add_plugin(plasma_applet_life ${life_SRCS})
|
|
target_link_libraries(plasma_applet_life
|
|
${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS})
|
|
|
|
install(TARGETS plasma_applet_life
|
|
DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
install(FILES plasma-applet-life.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR})
|
|
|
|
kde4_install_icons(${ICON_INSTALL_DIR})
|