2007-02-28 23:35:26 +00:00
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
2006-02-28 08:01:15 +00:00
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
2007-05-20 21:05:27 +00:00
|
|
|
set(plasma_LIB_SRCS
|
2007-05-20 20:13:46 +00:00
|
|
|
abstractrunner.cpp
|
2006-12-16 23:04:44 +00:00
|
|
|
applet.cpp
|
2007-05-20 20:13:46 +00:00
|
|
|
dataengine.cpp
|
2007-05-23 07:51:28 +00:00
|
|
|
dataenginemanager.cpp
|
2007-05-20 20:36:59 +00:00
|
|
|
datasource.cpp
|
2007-05-20 20:13:46 +00:00
|
|
|
plasma.cpp
|
2007-03-07 23:27:37 +00:00
|
|
|
svg.cpp
|
2006-12-16 23:04:44 +00:00
|
|
|
theme.cpp
|
2007-05-20 20:13:46 +00:00
|
|
|
widgets/checkbox.cpp
|
2007-03-04 20:35:37 +00:00
|
|
|
widgets/lineedit.cpp
|
2007-03-05 04:16:05 +00:00
|
|
|
widgets/pushbutton.cpp
|
2007-05-19 20:49:16 +00:00
|
|
|
widgets/radiobutton.cpp
|
2007-05-20 20:13:46 +00:00
|
|
|
widgets/widget.cpp
|
2007-05-22 17:07:00 +00:00
|
|
|
widgets/layout.cpp
|
|
|
|
widgets/layoutitem.cpp
|
|
|
|
widgets/vboxlayout.cpp
|
2006-12-16 23:04:44 +00:00
|
|
|
)
|
2006-02-28 08:01:15 +00:00
|
|
|
|
2007-05-20 21:05:27 +00:00
|
|
|
kde4_automoc(${plasma_LIB_SRCS})
|
2006-02-28 08:01:15 +00:00
|
|
|
|
2007-05-20 21:05:27 +00:00
|
|
|
kde4_add_library(plasma SHARED ${plasma_LIB_SRCS})
|
2006-02-28 08:01:15 +00:00
|
|
|
|
2007-05-20 21:05:27 +00:00
|
|
|
target_link_libraries(plasma ${KDE4_KIO_LIBS} )
|
2006-02-28 08:01:15 +00:00
|
|
|
|
2007-05-20 21:05:27 +00:00
|
|
|
set_target_properties(plasma PROPERTIES VERSION 1.0.0 SOVERSION 1 )
|
|
|
|
install(TARGETS plasma DESTINATION ${LIB_INSTALL_DIR} )
|
2006-02-28 08:01:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
2007-02-28 00:41:09 +00:00
|
|
|
install( FILES
|
2007-03-20 17:37:44 +00:00
|
|
|
abstractrunner.h
|
2007-05-20 20:13:46 +00:00
|
|
|
applet.h
|
2007-02-28 23:35:26 +00:00
|
|
|
dataengine.h
|
2007-05-23 07:51:28 +00:00
|
|
|
dataenginemanager.h
|
2007-05-20 20:36:59 +00:00
|
|
|
datasource.h
|
2007-05-20 20:13:46 +00:00
|
|
|
plasma.h
|
|
|
|
plasma_export.h
|
|
|
|
svg.h
|
|
|
|
theme.h
|
2007-03-01 19:58:19 +00:00
|
|
|
widgets/widget.h
|
2007-03-04 20:35:37 +00:00
|
|
|
widgets/lineedit.h
|
2007-03-05 04:16:05 +00:00
|
|
|
widgets/pushbutton.h
|
2007-03-12 13:52:12 +00:00
|
|
|
widgets/checkbox.h
|
2007-05-19 21:00:16 +00:00
|
|
|
widgets/radiobutton.h
|
2007-02-28 00:41:09 +00:00
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/plasma )
|
2006-02-28 08:01:15 +00:00
|
|
|
|
2007-03-20 17:37:44 +00:00
|
|
|
install( FILES
|
|
|
|
includes/Applet
|
|
|
|
includes/Plasma
|
|
|
|
includes/AbstractRunner
|
|
|
|
includes/Theme
|
|
|
|
includes/DataEngine
|
2007-05-23 07:51:28 +00:00
|
|
|
includes/DataEngineManager
|
|
|
|
includes/DataSource
|
2007-03-20 17:37:44 +00:00
|
|
|
includes/Svg
|
2007-05-13 08:31:09 +00:00
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/KDE/Plasma )
|
2007-03-20 17:37:44 +00:00
|
|
|
|
2007-05-24 20:01:12 +00:00
|
|
|
install( FILES
|
|
|
|
plasma_applet.desktop
|
|
|
|
plasma_dataengine.desktop
|
|
|
|
DESTINATION ${SERVICETYPES_INSTALL_DIR} )
|
2007-05-19 08:38:46 +00:00
|
|
|
|