1
0
mirror of https://invent.kde.org/system/dolphin synced 2024-07-04 17:30:55 +00:00

Update dependencies.

It appears that KF5TextEditor was added for KTextEdit, but that is actually
provided by KF5TextWidgets. It's then necessary to explicitly link to KF5Parts
(it was previously brought in implicitly by KF5TextEditor).

REVIEW: 124932
This commit is contained in:
Michael Palimaka 2015-08-26 22:53:44 +10:00
parent 3083e2db39
commit 4c0d110b2d
2 changed files with 3 additions and 2 deletions

View File

@ -62,7 +62,7 @@ find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
Solid Solid
IconThemes IconThemes
Completion Completion
TextEditor TextWidgets
WindowSystem WindowSystem
Notifications Notifications
) )

View File

@ -143,10 +143,11 @@ target_link_libraries(
KF5::KIOWidgets KF5::KIOWidgets
KF5::KIOFileWidgets KF5::KIOFileWidgets
KF5::Completion KF5::Completion
KF5::TextEditor KF5::TextWidgets
KF5::WindowSystem KF5::WindowSystem
KF5::ConfigCore KF5::ConfigCore
KF5::NewStuff KF5::NewStuff
KF5::Parts
) )
if(HAVE_BALOO) if(HAVE_BALOO)