From kde-commits Thu May 31 22:40:22 2007 From: Phobos Kappa Date: Thu, 31 May 2007 22:40:22 +0000 To: kde-commits Subject: playground/base/raptor (silent) Message-Id: <1180651222.319915.6219.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=118065123115014 SVN commit 670284 by phobosk: SVN_SILENT: update depreciated entries in the Cmake files M +5 -4 lib/CMakeLists.txt M +3 -3 lib/backend/CMakeLists.txt M +2 -2 lib/backend/ai/CMakeLists.txt M +2 -2 lib/plugin/CMakeLists.txt M +17 -15 menuviz/CMakeLists.txt M +1 -1 skin/CMakeLists.txt --- trunk/playground/base/raptor/lib/CMakeLists.txt #670283:670284 @@ -9,8 +9,6 @@ ########### prepare files ############### KDE4_ADD_LIBRARY(plasmicraptor SHARED ${plasmicraptor_LIB_SRCS}) -SET_TARGET_PROPERTIES(plasmicraptor PROPERTIES VERSION 1.0.0 SOVERSION 1 ) - TARGET_LINK_LIBRARIES( plasmicraptor kickermain @@ -21,11 +19,14 @@ ${KDE4_KUTILS_LIBS} ) +SET_TARGET_PROPERTIES(plasmicraptor PROPERTIES VERSION 1.0.0 SOVERSION 1 ) + + ########### install files ############### INSTALL(TARGETS plasmicraptor DESTINATION ${LIB_INSTALL_DIR} ) #INSTALL( FILES raptorbutton.h DESTINATION ${INCLUDE_INSTALL_DIR}/plasmicraptor ) ########### next to process ############### -SUBDIRS (backend) -SUBDIRS (plugin) +ADD_SUBDIRECTORY (backend) +ADD_SUBDIRECTORY (plugin) --- trunk/playground/base/raptor/lib/backend/CMakeLists.txt #670283:670284 @@ -10,8 +10,6 @@ ########### prepare files ############### KDE4_ADD_LIBRARY(plasmicraptor SHARED ${plasmicraptor_LIB_SRCS}) -SET_TARGET_PROPERTIES(plasmicraptor PROPERTIES VERSION 1.0.0 SOVERSION 1 ) - TARGET_LINK_LIBRARIES( plasmicraptor kickermain @@ -22,11 +20,13 @@ ${KDE4_KUTILS_LIBS} ) +SET_TARGET_PROPERTIES(plasmicraptor PROPERTIES VERSION 1.0.0 SOVERSION 1 ) + ########### install files ############### INSTALL(TARGETS plasmicraptor DESTINATION ${LIB_INSTALL_DIR} ) ########### next to process ############### -SUBDIRS (ai) +ADD_SUBDIRECTORY (ai) --- trunk/playground/base/raptor/lib/backend/ai/CMakeLists.txt #670283:670284 @@ -10,8 +10,6 @@ ########### prepare files ############### KDE4_ADD_LIBRARY(raptorai SHARED ${raptorai_LIB_SRCS}) -SET_TARGET_PROPERTIES(raptorai PROPERTIES VERSION 1.0.0 SOVERSION 1 ) - TARGET_LINK_LIBRARIES( raptorai kickermain @@ -22,7 +20,9 @@ ${KDE4_KUTILS_LIBS} ) +SET_TARGET_PROPERTIES(raptorai PROPERTIES VERSION 1.0.0 SOVERSION 1 ) + ########### install files ############### INSTALL(TARGETS raptorai DESTINATION ${LIB_INSTALL_DIR} ) --- trunk/playground/base/raptor/lib/plugin/CMakeLists.txt #670283:670284 @@ -9,8 +9,6 @@ ########### prepare files ############### KDE4_ADD_LIBRARY(plasmicraptor SHARED ${plasmicraptor_LIB_SRCS}) -SET_TARGET_PROPERTIES(plasmicraptor PROPERTIES VERSION 1.0.0 SOVERSION 1 ) - TARGET_LINK_LIBRARIES( plasmicraptor kickermain @@ -21,6 +19,8 @@ ${KDE4_KUTILS_LIBS} ) +SET_TARGET_PROPERTIES(plasmicraptor PROPERTIES VERSION 1.0.0 SOVERSION 1 ) + ########### install files ############### INSTALL(TARGETS plasmicraptor DESTINATION ${LIB_INSTALL_DIR} ) --- trunk/playground/base/raptor/menuviz/CMakeLists.txt #670283:670284 @@ -1,24 +1,26 @@ +########### source files ############### +SET(raptor_plasmoid_PART_SRCS + dummybutton.cpp + ) -#include_directories( ${CMAKE_SOURCE_DIR}/libkonq ${CMAKE_SOURCE_DIR}/kicker/core ) +KDE4_AUTOMOC(${raptor_plasmoid_PART_SRCS}) -INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) -#INCLUDE_DIRECTORIES( $(QT_INCLUDES) ${CMAKE_SOURCE_DIR}/kicker/applets/raptor/lib ) -########### next target ############### - -set(raptor_plasmoid_PART_SRCS dummybutton.cpp) - -KDE4_AUTOMOC(${raptor_plasmoid_PART_SRCS}) - +########### prepare files ############### KDE4_ADD_PLUGIN(raptor_plasmoid ${raptor_plasmoid_PART_SRCS}) +TARGET_LINK_LIBRARIES( + raptor_plasmoid + plasmicraptor + kickermain + konq + ${QT_AND_KDECORE_LIBS} + ${KDE4_KDEUI_LIBS} + ${KDE4_KIO_LIBS} + ${KDE4_KUTILS_LIBS} + ) -TARGET_LINK_LIBRARIES(raptor_plasmoid plasmicraptor kickermain konq ${QT_AND_KDECORE_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS} ${KDE4_KUTILS_LIBS} ) - +########### install files ############### INSTALL(TARGETS raptor_plasmoid DESTINATION ${PLUGIN_INSTALL_DIR} ) - - -########### install files ############### - #install( FILES raptor.desktop DESTINATION ${DATA_INSTALL_DIR}/kicker/applets ) --- trunk/playground/base/raptor/skin/CMakeLists.txt #670283:670284 @@ -1,2 +1,2 @@ ########### next to process ############### -SUBDIRS (vector) +ADD_SUBDIRECTORY (vector)