mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
17 lines
417 B
CMake
17 lines
417 B
CMake
project(plasma-wallpaper-xwallpaper)
|
|
|
|
set(xwallpaper_SRCS
|
|
xwallpaper.cpp
|
|
)
|
|
|
|
kde4_add_plugin(plasma_wallpaper_xwallpaper ${xwallpaper_SRCS})
|
|
target_link_libraries(plasma_wallpaper_xwallpaper KDE4::plasma KDE4::kdeui)
|
|
|
|
install(
|
|
TARGETS plasma_wallpaper_xwallpaper
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
install(
|
|
FILES plasma-wallpaper-xwallpaper.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|