mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
24 lines
471 B
CMake
24 lines
471 B
CMake
project(plasma-wallpaper-virus)
|
|
|
|
set(virus_SRCS
|
|
virus.cpp
|
|
backgrounddelegate.cpp
|
|
backgroundlistmodel.cpp
|
|
alife.cpp
|
|
itemsview.cpp
|
|
)
|
|
|
|
kde4_add_plugin(plasma_wallpaper_virus ${virus_SRCS})
|
|
target_link_libraries(plasma_wallpaper_virus
|
|
KDE4::plasma
|
|
KDE4::kio
|
|
)
|
|
|
|
install(
|
|
TARGETS plasma_wallpaper_virus
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
install(
|
|
FILES plasma-wallpaper-virus.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|