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