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
15 lines
277 B
CMake
15 lines
277 B
CMake
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(kwmtheme_SRCS main.cpp )
|
|
|
|
kde4_automoc(kwmtheme ${kwmtheme_SRCS})
|
|
|
|
kde4_add_executable(kwmtheme ${kwmtheme_SRCS})
|
|
|
|
target_link_libraries(kwmtheme ${KDE4_KDECORE_LIBS} )
|
|
|
|
install(TARGETS kwmtheme DESTINATION ${BIN_INSTALL_DIR})
|
|
|