2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
set(kdecorations_LIB_SRCS
|
|
|
|
kdecoration.cpp
|
|
|
|
kdecoration_p.cpp
|
|
|
|
kdecoration_plugins_p.cpp
|
|
|
|
kdecorationfactory.cpp
|
|
|
|
kcommondecoration.cpp )
|
|
|
|
|
2007-04-29 22:04:13 +00:00
|
|
|
kde4_automoc(${kdecorations_LIB_SRCS})
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
kde4_add_library(kdecorations SHARED ${kdecorations_LIB_SRCS})
|
|
|
|
|
|
|
|
target_link_libraries(kdecorations ${KDE4_KDEUI_LIBS} ${QT_QTGUI_LIBRARY})
|
|
|
|
|
2007-04-30 12:01:18 +00:00
|
|
|
set_target_properties(kdecorations PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
|
2007-04-29 17:35:43 +00:00
|
|
|
install(TARGETS kdecorations DESTINATION ${LIB_INSTALL_DIR} )
|
|
|
|
|
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
2007-04-29 20:56:31 +00:00
|
|
|
install( FILES kdecoration.h kdecoration_p.h kdecoration_plugins_p.h kdecorationfactory.h kcommondecoration.h DESTINATION ${INCLUDE_INSTALL_DIR})
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
### effects lib ###
|
|
|
|
set(kwin_EFFECTSLIB_SRCS
|
|
|
|
kwinglobals.cpp
|
|
|
|
kwineffects.cpp
|
|
|
|
kwinglutils.cpp
|
|
|
|
kwinglutils_funcs.cpp
|
|
|
|
)
|
|
|
|
kde4_automoc(${kwin_EFFECTSLIB_SRCS})
|
|
|
|
kde4_add_library(kwineffects SHARED ${kwin_EFFECTSLIB_SRCS})
|
|
|
|
target_link_libraries(kwineffects ${KDE4_KDECORE_LIBS} ${QT_QTGUI_LIBRARY} ${X11_LIBRARIES})
|
2007-05-02 14:48:49 +00:00
|
|
|
set_target_properties(kwineffects PROPERTIES VERSION 1.0.0 SOVERSION 1 )
|
2007-04-29 17:35:43 +00:00
|
|
|
install(TARGETS kwineffects DESTINATION ${LIB_INSTALL_DIR})
|
|
|
|
|
|
|
|
if(OPENGL_FOUND)
|
|
|
|
target_link_libraries(kwineffects ${OPENGL_gl_LIBRARY})
|
|
|
|
# -ldl used by OpenGL code
|
|
|
|
target_link_libraries(kwineffects -ldl)
|
|
|
|
endif(OPENGL_FOUND)
|
|
|
|
|
|
|
|
install( FILES kwinglobals.h kwineffects.h kwinglutils.h kwinglutils_funcs.h DESTINATION ${INCLUDE_INSTALL_DIR})
|
|
|
|
|