2007-04-29 17:35:43 +00:00
|
|
|
|
2007-12-17 14:14:53 +00:00
|
|
|
configure_file(kwinconfig.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/kwinconfig.h )
|
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})
|
|
|
|
|
|
|
|
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-11-29 14:11:02 +00:00
|
|
|
install( FILES kdecoration.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
|
2007-07-04 09:54:32 +00:00
|
|
|
kwinshadereffect.cpp
|
2007-04-29 17:35:43 +00:00
|
|
|
)
|
|
|
|
kde4_add_library(kwineffects SHARED ${kwin_EFFECTSLIB_SRCS})
|
2007-11-24 13:43:52 +00:00
|
|
|
target_link_libraries(kwineffects ${KDE4_KDEUI_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
|
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
|
|
|
|
2007-06-05 22:30:08 +00:00
|
|
|
install( FILES kwinglobals.h kwineffects.h DESTINATION ${INCLUDE_INSTALL_DIR})
|
2007-04-29 17:35:43 +00:00
|
|
|
|