From kde-commits Fri Jan 23 12:34:42 2009 From: Andre Moreira Magalhaes Date: Fri, 23 Jan 2009 12:34:42 +0000 To: kde-commits Subject: KDE/kdebase/workspace/plasma/applets/kickoff Message-Id: <1232714082.855918.1688.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=123271416606864 SVN commit 915555 by andrunko: Proper generate libkickoff. M +5 -5 CMakeLists.txt --- trunk/KDE/kdebase/workspace/plasma/applets/kickoff/CMakeLists.txt #915554:915555 @@ -44,9 +44,9 @@ include_directories( ${STRIGI_INCLUDE_DIR} ) -kde4_add_library(libkickoff SHARED ${libkickoff_SRCS}) -target_link_libraries(libkickoff ${KDE4_PLASMA_LIBS} solidcontrol ${Kickoff_LIBS}) -install(TARGETS libkickoff ${INSTALL_TARGETS_DEFAULT_ARGS}) +kde4_add_library(kickoff SHARED ${libkickoff_SRCS}) +target_link_libraries(kickoff ${KDE4_PLASMA_LIBS} solidcontrol ${Kickoff_LIBS}) +install(TARGETS kickoff ${INSTALL_TARGETS_DEFAULT_ARGS}) ####################################################################################### # Kickoff Plasma Applet @@ -64,7 +64,7 @@ applet/applet.cpp ) kde4_add_plugin(plasma_applet_launcher ${Applet_SRCS}) -target_link_libraries(plasma_applet_launcher ${KDE4_PLASMA_LIBS} solidcontrol ${Kickoff_LIBS} libkickoff) +target_link_libraries(plasma_applet_launcher ${KDE4_PLASMA_LIBS} solidcontrol ${Kickoff_LIBS} kickoff) install(TARGETS plasma_applet_launcher DESTINATION ${PLUGIN_INSTALL_DIR}) install(FILES applet/plasma-applet-launcher.desktop DESTINATION ${SERVICES_INSTALL_DIR}) @@ -73,7 +73,7 @@ set(SimpleApplet_SRCS simpleapplet/menuview.cpp simpleapplet/simpleapplet.cpp) kde4_add_plugin(plasma_applet_simplelauncher ${SimpleApplet_SRCS}) -target_link_libraries(plasma_applet_simplelauncher ${KDE4_KUTILS_LIBS} ${KDE4_PLASMA_LIBS} solidcontrol ${Kickoff_LIBS} libkickoff) +target_link_libraries(plasma_applet_simplelauncher ${KDE4_KUTILS_LIBS} ${KDE4_PLASMA_LIBS} solidcontrol ${Kickoff_LIBS} kickoff) install(TARGETS plasma_applet_simplelauncher DESTINATION ${PLUGIN_INSTALL_DIR}) install(FILES simpleapplet/plasma-applet-simplelauncher.desktop DESTINATION ${SERVICES_INSTALL_DIR})