From 633db54cbad1eb9f9cbfc5720c984ed5b240a296 Mon Sep 17 00:00:00 2001 From: "Anselmo L. S. Melo" Date: Sat, 3 Aug 2013 16:35:54 -0300 Subject: [PATCH] Fix build: KConfigWidgets Fix build after kdelibs-frameworks commit 2929fe7d932 which removed kdeui link to KConfigWidgets. REVIEW: 111865 --- effects/CMakeLists.txt | 2 +- scripting/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/effects/CMakeLists.txt b/effects/CMakeLists.txt index 726b8b7615..442fa33c84 100644 --- a/effects/CMakeLists.txt +++ b/effects/CMakeLists.txt @@ -90,9 +90,9 @@ macro( KWIN4_ADD_EFFECT_CONFIG name ) kwineffects ${Qt5Widgets_LIBRARIES} ${KDE4Support_LIBRARIES} - ${KDE4_KDEUI_LIBRARY} ${KDE4_KIO_LIBRARY} # KUrlRequester KF5::KCoreAddons + KF5::KConfigWidgets KF5::KI18n ) install( TARGETS kcm_kwin4_effect_${name} DESTINATION ${PLUGIN_INSTALL_DIR} ) diff --git a/scripting/CMakeLists.txt b/scripting/CMakeLists.txt index ae2816b966..c5630b3ec4 100644 --- a/scripting/CMakeLists.txt +++ b/scripting/CMakeLists.txt @@ -2,7 +2,7 @@ set(kcm_kwin4_genericscripted_SRCS genericscriptedconfig.cpp) kde4_add_plugin( kcm_kwin4_genericscripted ${kcm_kwin4_genericscripted_SRCS} ) target_link_libraries( kcm_kwin4_genericscripted ${KDE4Support_LIBRARIES} # KStandardDirs - ${KDE4_KDEUI_LIBRARY} #KCModule + KF5::KConfigWidgets #KCModule KF5::plasma ${Qt5UiTools_LIBRARIES} ) install( TARGETS kcm_kwin4_genericscripted DESTINATION ${PLUGIN_INSTALL_DIR} )