mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
23 lines
397 B
CMake
23 lines
397 B
CMake
project(plasma-wallpaper-potd)
|
|
|
|
set(potd_SRCS
|
|
potd.cpp
|
|
)
|
|
|
|
kde4_add_plugin(plasma_wallpaper_potd ${potd_SRCS})
|
|
target_link_libraries(plasma_wallpaper_potd
|
|
KDE4::plasma
|
|
KDE4::kdeui
|
|
KDE4::kio
|
|
)
|
|
|
|
install(
|
|
TARGETS plasma_wallpaper_potd
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES
|
|
plasma-wallpaper-potd.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|