mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
28 lines
556 B
CMake
28 lines
556 B
CMake
project(bball)
|
|
|
|
set(bball_SRCS bball.cpp bballConfig.ui)
|
|
|
|
kde4_add_plugin(plasma_applet_bball ${bball_SRCS})
|
|
|
|
target_link_libraries(plasma_applet_bball
|
|
${KDE4_PLASMA_LIBS}
|
|
${KDE4_KDEUI_LIBS}
|
|
${KDE4_KIO_LIBS}
|
|
)
|
|
|
|
install(
|
|
TARGETS plasma_applet_bball
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES plasma-applet-bball.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES bball.svgz football.svgz bounce.ogg
|
|
DESTINATION ${KDE4_DATA_INSTALL_DIR}/bball/
|
|
)
|
|
|
|
kde4_install_icons(${KDE4_ICON_INSTALL_DIR})
|