mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
19 lines
676 B
CMake
19 lines
676 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(plasma-wallpaper-virus)
|
|
|
|
set(virus_SRCS
|
|
virus.cpp
|
|
backgrounddelegate.cpp
|
|
backgroundlistmodel.cpp
|
|
alife.cpp
|
|
itemsview.cpp
|
|
)
|
|
|
|
set(ksmserver_xml ${KDEBASE_WORKSPACE_SOURCE_DIR}/ksmserver/org.kde.KSMServerInterface.xml)
|
|
qt4_add_dbus_interface(image_SRCS ${ksmserver_xml} ksmserver_interface)
|
|
|
|
kde4_add_plugin(plasma_wallpaper_virus ${virus_SRCS})
|
|
target_link_libraries(plasma_wallpaper_virus ${KDE4_PLASMA_LIBS} ${KDE4_KIO_LIBS} ${KDE4_KFILE_LIBS})
|
|
|
|
install(TARGETS plasma_wallpaper_virus DESTINATION ${KDE4_PLUGIN_INSTALL_DIR})
|
|
install(FILES plasma-wallpaper-virus.desktop DESTINATION ${KDE4_SERVICES_INSTALL_DIR})
|