01f2a3a9f2
enable-final argument (there was not a dependancy between <name>_final.cpp file and moc generated files => moc files were never created) Not necessary to rebuild all kdelibs just cp kdelibs/cmake/modules/KDE4Macros.cmake <path_kde4>/share/apps/cmake/modules I ported and tested all kde module (without enable-final argument, it compiles fines (test and program)) Don't try to use enable-final argument for the moment it doesn't compile (but dependancy works) Regards svn path=/trunk/KDE/kdebase/workspace/; revision=595039
43 lines
1.1 KiB
CMake
43 lines
1.1 KiB
CMake
|
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(kwin3_test_PART_SRCS test.cpp )
|
|
|
|
kde4_automoc(kwin3_test ${kwin3_test_PART_SRCS})
|
|
|
|
kde4_add_plugin(kwin3_test ${kwin3_test_PART_SRCS})
|
|
|
|
kde4_install_libtool_file( ${PLUGIN_INSTALL_DIR} kwin3_test )
|
|
|
|
target_link_libraries(kwin3_test ${KDE4_KDEUI_LIBS} kdecorations )
|
|
|
|
install(TARGETS kwin3_test DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES test.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin )
|
|
|
|
|
|
|
|
|
|
#original Makefile.am contents follow:
|
|
|
|
#INCLUDES = -I$(srcdir)/../../lib $(all_includes)
|
|
#
|
|
#kde_module_LTLIBRARIES = kwin3_test.la
|
|
#
|
|
#kwin3_test_la_SOURCES = test.cpp
|
|
#kwin3_test_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
|
|
#kwin3_test_la_LIBADD = $(LIB_KDEUI) ../../lib/libkdecorations.la
|
|
##kwin_keramik_la_LDFLAGS = $(all_libraries) -avoid-version -module $(KDE_RPATH) $(KDE_MT_LDFLAGS)
|
|
#
|
|
#METASOURCES = AUTO
|
|
#
|
|
#kwin_test_lnkdir = $(kde_datadir)/kwin
|
|
#kwin_test_lnk_DATA = test.desktop
|
|
#
|
|
#EXTRA_DIST = $(kwin_test_lnk_DATA)
|