diff options
| author | David Faure <[email protected]> | 2007-07-01 14:25:21 +0000 |
|---|---|---|
| committer | David Faure <[email protected]> | 2007-07-01 14:25:21 +0000 |
| commit | ab3d8b100385fabaa612683f527d2e4ebd5c1086 (patch) | |
| tree | 3286f9209fb5e8df8fd1fa0cd70168dbd6b97d2b /src/CMakeLists.txt | |
| parent | 6b42e7ba3b87af93d17f714d05ff2ddb09d13519 (diff) | |
Here comes dolphinpart, to use dolphin as the file management view in konqueror.
Embeds nicely, now all the integration needs to be done.
Thanks to Peter for the nice DolphinView/DolphinViewContainer separation which made writing the part very very easy!
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=682079
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c305f3015..a2aad29a3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -13,6 +13,7 @@ set(dolphinprivate_LIB_SRCS dolphincontroller.cpp dolphindetailsview.cpp dolphiniconsview.cpp + dolphincolumnview.cpp dolphinitemcategorizer.cpp klistview.cpp ksortfilterproxymodel.cpp @@ -20,6 +21,7 @@ set(dolphinprivate_LIB_SRCS viewproperties.cpp dolphinsortfilterproxymodel.cpp renamedialog.cpp + dolphinview.cpp ) kde4_add_kcfg_files(dolphinprivate_LIB_SRCS @@ -51,15 +53,31 @@ install(TARGETS dolphinprivate DESTINATION ${LIB_INSTALL_DIR} ) ########################################## +set(dolphinpart_SRCS + dolphinpart.cpp +) + +kde4_automoc(${dolphinpart_SRCS}) + +kde4_add_plugin(dolphinpart ${dolphinpart_SRCS}) + +target_link_libraries(dolphinpart dolphinprivate) + +install(TARGETS dolphinpart DESTINATION ${PLUGIN_INSTALL_DIR} ) + +install(FILES dolphinpart.rc DESTINATION ${DATA_INSTALL_DIR}/dolphinpart ) +install(FILES dolphinpart.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) + + +########################################## + set(dolphin_SRCS applyviewpropsjob.cpp columnviewsettingspage.cpp detailsviewsettingspage.cpp dolphinapplication.cpp - dolphincolumnview.cpp dolphinmainwindow.cpp dolphinnewmenu.cpp - dolphinview.cpp dolphinviewcontainer.cpp dolphinstatusbar.cpp dolphindirlister.cpp |
