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-02-28 01:41:09 +01:00
|
|
|
runner.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
|
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
|
|
|
|
runner.h
|
|
|
|
theme.h
|
|
|
|
interface.h
|
2007-03-01 00:35:26 +01:00
|
|
|
dataengine.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-02-28 01:41:09 +01:00
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/plasma )
|
2006-02-28 09:01:15 +01:00
|
|
|
|