Necessary to modify KDE4_ADD_KCFG_FILES to support ENABLE_FINAL

(there was not a dependancy between <name>_final.cpp file and
kcfg file => kfg 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 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)
(I didn't test all compile for the moment I will fix all compile today (without enable-final argument)
kdelibs/kdepimlibs/kdebase/kdeutils compiles fine)


Regards

svn path=/trunk/KDE/kdebase/konqueror/; revision=595170
This commit is contained in:
Laurent Montel 2006-10-13 13:27:20 +00:00
parent 9bba68d81a
commit 9ca8971e1a
5 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@ kde4_automoc(kcm_useraccount ${kcm_useraccount_PART_SRCS})
kde4_add_ui_files(kcm_useraccount_PART_SRCS main_widget.ui )
kde4_add_kcfg_files(kcm_useraccount_PART_SRCS settings.kcfgc pass.kcfgc )
kde4_add_kcfg_files(kcm_useraccount kcm_useraccount_PART_SRCS settings.kcfgc pass.kcfgc )
kde4_add_plugin(kcm_useraccount ${kcm_useraccount_PART_SRCS})

View file

@ -38,7 +38,7 @@ kde4_automoc(keditbookmarks ${keditbookmarks_KDEINIT_SRCS})
kde4_add_kcfg_files(keditbookmarks_KDEINIT_SRCS settings.kcfgc )
kde4_add_kcfg_files(keditbookmarks keditbookmarks_KDEINIT_SRCS settings.kcfgc )
kde4_add_kdeinit_executable( keditbookmarks ${keditbookmarks_KDEINIT_SRCS})

View file

@ -4,7 +4,7 @@ project(konqueror)
add_definitions(-D_LARGEFILE64_SOURCE )
set(libkonqueror_intern_KCFG_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/konq_settingsxt.kcfgc)
kde4_add_kcfg_files(libkonqueror_intern_SRCS ${libkonqueror_intern_KCFG_SRCS})
kde4_add_kcfg_files(libkonqueror_intern libkonqueror_intern_SRCS ${libkonqueror_intern_KCFG_SRCS})
add_subdirectory( client )
add_subdirectory( iconview )

View file

@ -16,7 +16,7 @@ set(konq_listview_PART_SRCS
kde4_automoc(konq_listview ${konq_listview_PART_SRCS})
kde4_add_kcfg_files(konq_listview_PART_SRCS konq_listviewsettings.kcfgc )
kde4_add_kcfg_files(konq_listview konq_listview_PART_SRCS konq_listviewsettings.kcfgc )
kde4_add_plugin(konq_listview ${konq_listview_PART_SRCS})

View file

@ -4,7 +4,7 @@ include_directories( ${CMAKE_SOURCE_DIR}/konqueror )
########### next target ###############
set(kded_konqy_preloader_PART_SRCS preloader.cc )
kde4_add_kcfg_files(kded_konqy_preloader_PART_SRCS ${CMAKE_SOURCE_DIR}/konqueror/konq_settingsxt.kcfgc)
kde4_add_kcfg_files(kded_konqy_preloader kded_konqy_preloader_PART_SRCS ${CMAKE_SOURCE_DIR}/konqueror/konq_settingsxt.kcfgc)
qt4_add_dbus_adaptor(kded_konqy_preloader_PART_SRCS org.kde.konqueror.Preloader.xml preloader.h KonqyPreloader)