mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Use alias
svn path=/trunk/KDE/kdebase/konqueror/; revision=515010
This commit is contained in:
parent
31651231d9
commit
03883eca02
6 changed files with 13 additions and 9 deletions
|
@ -13,7 +13,7 @@ kde4_automoc(${kdepasswd_SRCS})
|
|||
|
||||
kde4_add_executable(kdepasswd ${kdepasswd_SRCS})
|
||||
|
||||
target_link_libraries(kdepasswd ${QT_AND_KDECORE_LIBS} kio )
|
||||
target_link_libraries(kdepasswd ${LIB_KIO} )
|
||||
|
||||
install_targets(/bin kdepasswd )
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ kde4_add_plugin(kcm_useraccount ${kcm_useraccount_PART_SRCS})
|
|||
|
||||
kde4_install_libtool_file( ${PLUGIN_INSTALL_DIR} kcm_useraccount )
|
||||
|
||||
target_link_libraries(kcm_useraccount ${QT_AND_KDECORE_LIBS} konq ${QT_QTGUI_LIBRARY} kdeui ${QT_QT3SUPPORT_LIBRARY} kio kdesu)
|
||||
target_link_libraries(kcm_useraccount konq ${LIB_KDE3SUPPORT} kdesu)
|
||||
|
||||
install_targets(${LIB_INSTALL_DIR}/kde4 kcm_useraccount )
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ kde4_add_plugin(kfindpart WITH_PREFIX ${kfindpart_PART_SRCS})
|
|||
|
||||
kde4_install_libtool_file( ${PLUGIN_INSTALL_DIR} kfindpart )
|
||||
|
||||
target_link_libraries(kfindpart ${QT_AND_KDECORE_LIBS} kparts konq kde3support )
|
||||
target_link_libraries(kfindpart ${LIB_KDE3SUPPORT} konq )
|
||||
|
||||
install_targets(${LIB_INSTALL_DIR}/kde4 kfindpart )
|
||||
|
||||
|
@ -32,7 +32,7 @@ kde4_automoc(${kfind_SRCS})
|
|||
|
||||
kde4_add_executable(kfind ${kfind_SRCS})
|
||||
|
||||
target_link_libraries(kfind ${QT_AND_KDECORE_LIBS} kparts kde3support )
|
||||
target_link_libraries(kfind ${LIB_KDE3SUPPORT} )
|
||||
|
||||
install_targets(/bin kfind )
|
||||
|
||||
|
|
|
@ -21,7 +21,10 @@ include_directories( ${CMAKE_SOURCE_DIR}/libkonq ${CMAKE_SOURCE_DIR}/workspace/k
|
|||
|
||||
########### next target ###############
|
||||
|
||||
set(konqueror_KDEINIT_SRCS
|
||||
set(libkonqueror_internal_SRCS "")
|
||||
kde4_add_kcfg_files(libkonqueror_internal_SRCS konq_settingsxt.kcfgc )
|
||||
|
||||
set(konqueror_KDEINIT_SRCS ${libkonqueror_internal_SRCS}
|
||||
konq_main.cc
|
||||
KonquerorIface.cc
|
||||
KonqMainWindowIface.cc
|
||||
|
|
|
@ -5,15 +5,16 @@ add_subdirectory( dirtree_module )
|
|||
add_subdirectory( history_module )
|
||||
add_subdirectory( bookmark_module )
|
||||
|
||||
include_directories( ${CMAKE_SOURCE_DIR}/libkonq ${CMAKE_SOURCE_DIR}/konqueror ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} )
|
||||
include_directories( ${CMAKE_SOURCE_DIR}/libkonq ${CMAKE_SOURCE_DIR}/konqueror ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/konqueror/sidebar/ )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
|
||||
########### next target ###############
|
||||
set( libkonqsidebartree_SRCS konq_sidebartreeitem.cpp konq_sidebartreetoplevelitem.cpp )
|
||||
|
||||
set(konqsidebar_tree_PART_SRCS konqsidebar_tree.cpp )
|
||||
set(konqsidebar_tree_PART_SRCS konqsidebar_tree.cpp ${libkonqsidebartree_SRCS})
|
||||
|
||||
kde4_automoc(${konqsidebar_tree_PART_SRCS})
|
||||
|
||||
|
@ -21,7 +22,7 @@ kde4_add_plugin(konqsidebar_tree ${konqsidebar_tree_PART_SRCS})
|
|||
|
||||
kde4_install_libtool_file( ${PLUGIN_INSTALL_DIR} konqsidebar_tree )
|
||||
|
||||
target_link_libraries(konqsidebar_tree ${QT_AND_KDECORE_LIBS} konq konqsidebarplugin konq_sidebar_tree )
|
||||
target_link_libraries(konqsidebar_tree ${QT_AND_KDECORE_LIBS} konq konqsidebarplugin )
|
||||
|
||||
install_targets(${LIB_INSTALL_DIR}/kde4 konqsidebar_tree )
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ kde4_add_dcop_skels(konq_LIB_SRCS konq_undo.h konq_historycomm.h konq_faviconmgr
|
|||
|
||||
kde4_add_library(konq SHARED ${konq_LIB_SRCS})
|
||||
|
||||
target_link_libraries(konq ${QT_AND_KDECORE_LIBS} kparts kde3support kdeui kio DCOP ${QT_QTGUI_LIBRARY} ${QT_QT3SUPPORT_LIBRARY} ${QT_QTXML_LIBRARY} kdefx ${ZLIB_LIBRARY} ${X11_LIBRARIES})
|
||||
target_link_libraries(konq ${LIB_KDE3SUPPORT} ${QT_QTXML_LIBRARY} kdefx)
|
||||
|
||||
set_target_properties(konq PROPERTIES VERSION 4.2.0 SOVERSION 4 )
|
||||
install_targets(${LIB_INSTALL_DIR} konq )
|
||||
|
|
Loading…
Reference in a new issue