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
55 lines
1.3 KiB
CMake
55 lines
1.3 KiB
CMake
kde4_header()
|
|
|
|
add_subdirectory( config )
|
|
|
|
include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(kwin3_plastik_PART_SRCS
|
|
plastik.cpp
|
|
plastikclient.cpp
|
|
plastikbutton.cpp
|
|
misc.cpp )
|
|
|
|
kde4_automoc(${kwin3_plastik_PART_SRCS})
|
|
|
|
kde4_add_plugin(kwin3_plastik ${kwin3_plastik_PART_SRCS})
|
|
|
|
kde4_install_libtool_file( ${PLUGIN_INSTALL_DIR} kwin3_plastik )
|
|
|
|
target_link_libraries(kwin3_plastik ${QT_AND_KDECORE_LIBS} kdeui kdecorations )
|
|
|
|
install_targets(${LIB_INSTALL_DIR}/kde4 kwin3_plastik )
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install_files( ${DATA_INSTALL_DIR}/kwin/ FILES plastik.desktop )
|
|
|
|
kde4_footer()
|
|
|
|
|
|
|
|
#original Makefile.am contents follow:
|
|
|
|
#AUTOMAKE_OPTIONS = foreign
|
|
#
|
|
#SUBDIRS = config
|
|
#
|
|
#KDE_CXXFLAGS = -DQT_PLUGIN
|
|
#
|
|
#INCLUDES = -I$(srcdir)/../../lib $(all_includes)
|
|
#
|
|
#kwindir = $(kde_datadir)/kwin/
|
|
#kwin_DATA = plastik.desktop
|
|
#
|
|
#kde_module_LTLIBRARIES = kwin3_plastik.la
|
|
#kwin3_plastik_la_SOURCES = plastik.cpp plastikclient.cpp plastikbutton.cpp misc.cpp
|
|
#kwin3_plastik_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
|
|
#kwin3_plastik_la_LIBADD = $(LIB_KDEUI) ../../lib/libkdecorations.la
|
|
#kwin3_plastik_la_METASOURCES = AUTO
|
|
#
|
|
#DISTCLEANFILES = $(kwin3_plastik_la_METASOURCES)
|
|
#
|