┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-11-24 07:15:24 +0000
committerPeter Penz <[email protected]>2009-11-24 07:15:24 +0000
commit7662e0e4d4053d223ad45cf28eea7697dde4f2f4 (patch)
tree15df3f0c203c00ea7b2308751d110ba250852ebc /src/CMakeLists.txt
parent61813e0df76f050dfa8de8e3f2220566b4013dec (diff)
Prepare the search criterion selector to use the new Nepomuk::Query::Term instead of a QString. The implementation still needs to be adapted, but this will be straight forward.
svn path=/trunk/KDE/kdebase/apps/; revision=1053447
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 4f64c8bae..fe51614ac 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -195,10 +195,23 @@ kde4_add_app_icon(dolphin_SRCS "${KDE4_ICON_INSTALL_DIR}/oxygen/*/apps/system-fi
kde4_add_executable(dolphin ${dolphin_SRCS})
-target_link_libraries(dolphin ${KDE4_KDEPRINT_LIBS} ${KDE4_KFILE_LIBS} ${KDE4_KUTILS_LIBRARY} konq dolphinprivate knewstuff2 ${KDE4_PHONON_LIBS})
+target_link_libraries(dolphin
+ ${KDE4_KDEPRINT_LIBS}
+ ${KDE4_KFILE_LIBS}
+ ${KDE4_KUTILS_LIBRARY}
+ konq
+ dolphinprivate
+ knewstuff2
+ ${KDE4_PHONON_LIBS}
+)
if (Nepomuk_FOUND)
- target_link_libraries(dolphin ${NEPOMUK_LIBRARIES} ${SOPRANO_LIBRARIES})
+ target_link_libraries(dolphin
+ ${NEPOMUK_LIBRARIES}
+ ${SOPRANO_LIBRARIES}
+ ${NEPOMUK_QUERY_LIBRARIES}
+ nepomukannotation
+ )
endif (Nepomuk_FOUND)
install(TARGETS dolphin ${INSTALL_TARGETS_DEFAULT_ARGS})