plasma-framework/CMakeLists.txt
Aaron J. Seigo 3de9c853b7 get this to compile at least so i can start to exercise it with krunner
and other such bits. no point on having this just sit on my disk i
suppose =)

svn path=/trunk/KDE/kdebase/workspace/plasma/lib/; revision=614239
2006-12-16 23:04:44 +00:00

28 lines
551 B
CMake

########### next target ###############
set(plasma_LIB_SRCS
plasma.cpp
applet.cpp
appletChain.cpp
interface.cpp
theme.cpp
)
kde4_automoc(${plasma_LIB_SRCS})
kde4_add_library(plasma SHARED ${plasma_LIB_SRCS})
target_link_libraries(plasma ${KDE4_KIO_LIBS} )
set_target_properties(plasma PROPERTIES VERSION 1.0.0 SOVERSION 1 )
install(TARGETS plasma DESTINATION ${LIB_INSTALL_DIR} )
########### install files ###############
install( FILES applet.h plasma.h theme.h interface.h DESTINATION ${INCLUDE_INSTALL_DIR}/plasma )