2006-05-12 00:08:30 +00:00
|
|
|
|
2006-02-28 08:01:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
set(kdecorations_LIB_SRCS
|
|
|
|
kdecoration.cpp
|
|
|
|
kdecoration_p.cpp
|
|
|
|
kdecoration_plugins_p.cpp
|
|
|
|
kdecorationfactory.cpp
|
|
|
|
kcommondecoration.cpp )
|
|
|
|
|
2007-04-10 13:02:08 +00:00
|
|
|
kde4_automoc(kdecorations ${kdecorations_LIB_SRCS})
|
2006-02-28 08:01:15 +00:00
|
|
|
|
|
|
|
kde4_add_library(kdecorations SHARED ${kdecorations_LIB_SRCS})
|
|
|
|
|
2007-01-02 20:57:56 +00:00
|
|
|
target_link_libraries(kdecorations ${KDE4_KDEUI_LIBS} ${QT_QTGUI_LIBRARY})
|
2006-02-28 08:01:15 +00:00
|
|
|
|
2007-04-10 13:02:08 +00:00
|
|
|
set_target_properties(kdecorations PROPERTIES VERSION 1.0.0 SOVERSION 1 )
|
2006-07-04 17:09:53 +00:00
|
|
|
install(TARGETS kdecorations DESTINATION ${LIB_INSTALL_DIR} )
|
2006-02-28 08:01:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
2007-04-10 13:02:08 +00:00
|
|
|
install_files( /include FILES kdecoration.h kdecoration_p.h kdecoration_plugins_p.h kdecorationfactory.h kcommondecoration.h )
|
|
|
|
|
|
|
|
### 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})
|
|
|
|
set_target_properties(kdecorations PROPERTIES VERSION 1.0.0 SOVERSION 1 )
|
|
|
|
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( /include FILES kwinglobals.h kwineffects.h kwinglutils.h kwinglutils_funcs.h )
|
|
|
|
|
|
|
|
|
|
|
|
#original Makefile.am contents follow:
|
|
|
|
|
|
|
|
## FRAME libkwin???
|
|
|
|
#lib_LTLIBRARIES = libkdecorations.la
|
|
|
|
#
|
|
|
|
#libkdecorations_la_SOURCES = kdecoration.cpp kdecoration_p.cpp kdecoration_plugins_p.cpp \
|
|
|
|
# kdecorationfactory.cpp kcommondecoration.cpp
|
|
|
|
#libkdecorations_la_LIBADD = $(LIB_KDECORE)
|
|
|
|
#libkdecorations_la_LDFLAGS = $(all_libraries) -version-info 1:0:0 -no-undefined
|
|
|
|
#
|
|
|
|
## FRAME
|
|
|
|
#include_HEADERS = kdecoration.h kdecoration_p.h kdecoration_plugins_p.h \
|
|
|
|
# kdecorationfactory.h kcommondecoration.h
|
|
|
|
#
|
|
|
|
#INCLUDES = $(all_includes)
|
|
|
|
#METASOURCES = AUTO
|
|
|
|
#
|
|
|
|
#include ../../../admin/Doxyfile.am
|
|
|
|
#
|
|
|
|
#messages: rc.cpp
|
|
|
|
# $(XGETTEXT) `find . -name \*.cpp` -o $(podir)/kwin_lib.pot
|
|
|
|
# -rm rc.cpp
|