2007-02-28 23:35:26 +00:00
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
2006-02-28 08:01:15 +00:00
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
2006-12-16 23:04:44 +00:00
|
|
|
set(plasma_LIB_SRCS
|
|
|
|
plasma.cpp
|
|
|
|
applet.cpp
|
|
|
|
interface.cpp
|
2007-02-28 00:41:09 +00:00
|
|
|
runner.cpp
|
2007-03-07 23:27:37 +00:00
|
|
|
svg.cpp
|
2006-12-16 23:04:44 +00:00
|
|
|
theme.cpp
|
2007-02-28 23:35:26 +00:00
|
|
|
dataengine.cpp
|
2007-03-02 14:34:41 +00:00
|
|
|
datavisualization.cpp
|
2007-03-01 19:58:19 +00:00
|
|
|
|
|
|
|
widgets/widget.cpp
|
2007-03-04 20:35:37 +00:00
|
|
|
widgets/lineedit.cpp
|
2007-03-05 04:16:05 +00:00
|
|
|
widgets/pushbutton.cpp
|
2007-03-12 13:52:12 +00:00
|
|
|
widgets/checkbox.cpp
|
2006-12-16 23:04:44 +00:00
|
|
|
)
|
2006-02-28 08:01:15 +00:00
|
|
|
|
2006-10-23 06:53:27 +00:00
|
|
|
kde4_automoc(${plasma_LIB_SRCS})
|
2006-02-28 08:01:15 +00:00
|
|
|
|
|
|
|
kde4_add_library(plasma SHARED ${plasma_LIB_SRCS})
|
|
|
|
|
2006-03-24 14:54:37 +00:00
|
|
|
target_link_libraries(plasma ${KDE4_KIO_LIBS} )
|
2006-02-28 08:01:15 +00:00
|
|
|
|
|
|
|
set_target_properties(plasma PROPERTIES VERSION 1.0.0 SOVERSION 1 )
|
2006-07-04 17:09:53 +00:00
|
|
|
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
|
|
|
|
applet.h
|
|
|
|
plasma.h
|
|
|
|
runner.h
|
|
|
|
theme.h
|
|
|
|
interface.h
|
2007-02-28 23:35:26 +00:00
|
|
|
dataengine.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-02-28 00:41:09 +00:00
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/plasma )
|
2006-02-28 08:01:15 +00:00
|
|
|
|