BE CARREFULL: Don't try to compile it for the moment (in progress) Don't use kdelibs trunk for compile it (there is not again test to disable compile when we compile with kdelibs trunk) For the moment there was a lot of missing test etc. I commit it just to allow to lose my changes if there is a pb on my HD. I will sync cmake from kdelibs trunk to kdelibs-snapshot. I hope to fix compile today or tomorrow. CCMAIL: neundorf@kde.org For the futur we must sync kdelibs/cmake/* to kdelibs-snapshot to compile all the time with kdelibs-snapshot svn path=/trunk/KDE/kdebase/workspace/; revision=514380 The following changes were in SVN, but were removed from git: A wallpapers/CMakeLists.txt
56 lines
1.5 KiB
CMake
56 lines
1.5 KiB
CMake
kde4_header()
|
|
|
|
include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(kdecorations_LIB_SRCS
|
|
kdecoration.cpp
|
|
kdecoration_p.cpp
|
|
kdecoration_plugins_p.cpp
|
|
kdecorationfactory.cpp
|
|
kcommondecoration.cpp )
|
|
|
|
kde4_automoc(${kdecorations_LIB_SRCS})
|
|
|
|
kde4_add_library(kdecorations SHARED ${kdecorations_LIB_SRCS})
|
|
|
|
target_link_libraries(kdecorations ${QT_AND_KDECORE_LIBS} )
|
|
|
|
set_target_properties(kdecorations PROPERTIES VERSION 1.0.0 SOVERSION 1 )
|
|
install_targets(${LIB_INSTALL_DIR} kdecorations )
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install_files( /include FILES kdecoration.h kdecoration_p.h kdecoration_plugins_p.h kdecorationfactory.h kcommondecoration.h )
|
|
|
|
kde4_create_doxygen_docs( )
|
|
|
|
kde4_footer()
|
|
|
|
|
|
|
|
#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
|