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
|
2007-11-29 14:11:02 +00:00
|
|
|
kcommondecoration.cpp
|
|
|
|
kcommondecoration_p.cpp )
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
kde4_add_library(kdecorations SHARED ${kdecorations_LIB_SRCS})
|
|
|
|
|
2008-11-15 03:04:44 +00:00
|
|
|
target_link_libraries(kdecorations ${KDE4_KDEUI_LIBS} kephal)
|
2008-12-02 02:01:14 +00:00
|
|
|
target_link_libraries(kdecorations LINK_INTERFACE_LIBRARIES ${KDE4_KDEUI_LIBS})
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2008-07-07 20:56:56 +00:00
|
|
|
set_target_properties(kdecorations PROPERTIES
|
|
|
|
VERSION ${GENERIC_LIB_VERSION}
|
|
|
|
SOVERSION ${GENERIC_LIB_SOVERSION}
|
|
|
|
)
|
2008-04-01 16:42:27 +00:00
|
|
|
install(TARGETS kdecorations ${INSTALL_TARGETS_DEFAULT_ARGS} )
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
2008-02-01 14:15:16 +00:00
|
|
|
install( FILES
|
|
|
|
kdecoration.h
|
|
|
|
kdecorationfactory.h
|
|
|
|
kcommondecoration.h
|
|
|
|
kdecorationbridge.h
|
2008-06-27 06:56:11 +00:00
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel )
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
### effects lib ###
|
|
|
|
set(kwin_EFFECTSLIB_SRCS
|
|
|
|
kwinglobals.cpp
|
|
|
|
kwineffects.cpp
|
|
|
|
kwinglutils.cpp
|
|
|
|
kwinglutils_funcs.cpp
|
2007-07-04 09:54:32 +00:00
|
|
|
kwinshadereffect.cpp
|
2008-05-07 14:43:13 +00:00
|
|
|
kwinxrenderutils.cpp
|
2007-04-29 17:35:43 +00:00
|
|
|
)
|
2008-04-10 23:15:44 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
kde4_add_library(kwineffects SHARED ${kwin_EFFECTSLIB_SRCS})
|
2008-11-15 03:04:44 +00:00
|
|
|
target_link_libraries(kwineffects ${KDE4_KDEUI_LIBS} ${QT_QTGUI_LIBRARY} ${X11_LIBRARIES} kephal)
|
2007-05-02 14:48:49 +00:00
|
|
|
set_target_properties(kwineffects PROPERTIES VERSION 1.0.0 SOVERSION 1 )
|
2008-04-10 23:15:44 +00:00
|
|
|
|
2008-04-01 16:42:27 +00:00
|
|
|
install(TARGETS kwineffects ${INSTALL_TARGETS_DEFAULT_ARGS})
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
if(OPENGL_FOUND)
|
|
|
|
target_link_libraries(kwineffects ${OPENGL_gl_LIBRARY})
|
2008-12-02 02:01:14 +00:00
|
|
|
target_link_libraries(kwineffects LINK_INTERFACE_LIBRARIES ${OPENGL_gl_LIBRARY})
|
2007-04-29 17:35:43 +00:00
|
|
|
# -ldl used by OpenGL code
|
2007-05-10 12:49:57 +00:00
|
|
|
find_library(DL_LIBRARY dl)
|
|
|
|
if (DL_LIBRARY)
|
|
|
|
target_link_libraries(kwineffects ${DL_LIBRARY})
|
|
|
|
endif(DL_LIBRARY)
|
2007-04-29 17:35:43 +00:00
|
|
|
endif(OPENGL_FOUND)
|
2007-09-02 18:20:36 +00:00
|
|
|
if (X11_Xrender_FOUND)
|
|
|
|
target_link_libraries(kwineffects ${X11_Xrender_LIB})
|
|
|
|
endif (X11_Xrender_FOUND)
|
2007-09-26 16:31:06 +00:00
|
|
|
if (X11_Xrandr_FOUND)
|
|
|
|
target_link_libraries(kwineffects ${X11_Xrandr_LIB})
|
|
|
|
endif (X11_Xrandr_FOUND)
|
|
|
|
if (X11_Xcomposite_FOUND)
|
|
|
|
target_link_libraries(kwineffects ${X11_Xcomposite_LIB})
|
|
|
|
endif (X11_Xcomposite_FOUND)
|
|
|
|
if (X11_Xdamage_FOUND)
|
|
|
|
target_link_libraries(kwineffects ${X11_Xdamage_LIB})
|
|
|
|
endif (X11_Xdamage_FOUND)
|
|
|
|
if (X11_Xfixes_FOUND)
|
|
|
|
target_link_libraries(kwineffects ${X11_Xfixes_LIB})
|
|
|
|
endif (X11_Xfixes_FOUND)
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2008-02-01 14:15:16 +00:00
|
|
|
install( FILES
|
|
|
|
kwinglobals.h
|
|
|
|
kwineffects.h
|
|
|
|
kwinglutils.h
|
|
|
|
kwinglutils_funcs.h
|
|
|
|
kwinshadereffect.h
|
2008-05-07 14:43:13 +00:00
|
|
|
kwinxrenderutils.h
|
2008-02-01 14:15:16 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/kwinconfig.h
|
2008-06-27 06:56:11 +00:00
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel)
|