[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [gluon] creator/plugins: Add the missing component declaration in
From:       Laszlo Papp <lpapp () kde ! org>
Date:       2011-07-31 22:38:44
Message-ID: 20110731223844.1F8C7A60AE () git ! kde ! org
[Download RAW message or body]

Git commit e0a1d352fbe61aee0e94fa9e43adaec6aeee399e by Laszlo Papp.
Committed on 01/08/2011 at 03:34.
Pushed by lpapp into branch 'master'.

Add the missing component declaration in the relevant creator plugins

M  +7    -2    creator/plugins/docks/messagedock/CMakeLists.txt
M  +7    -2    creator/plugins/docks/scenedock/CMakeLists.txt
M  +8    -2    creator/plugins/kparts/gluoneditorpart/CMakeLists.txt
M  +7    -2    creator/plugins/docks/propertiesdock/CMakeLists.txt
M  +7    -2    creator/plugins/docks/projectdock/CMakeLists.txt
M  +9    -3    creator/plugins/kparts/codeeditorpart/CMakeLists.txt
M  +7    -2    creator/plugins/docks/componentsdock/CMakeLists.txt
M  +7    -2    creator/plugins/tools/vcs/CMakeLists.txt
M  +11   -3    creator/plugins/kparts/gluonviewerpart/CMakeLists.txt

http://commits.kde.org/gluon/e0a1d352fbe61aee0e94fa9e43adaec6aeee399e

diff --git a/creator/plugins/docks/componentsdock/CMakeLists.txt \
b/creator/plugins/docks/componentsdock/CMakeLists.txt index 1b56b64..8936277 100644
--- a/creator/plugins/docks/componentsdock/CMakeLists.txt
+++ b/creator/plugins/docks/componentsdock/CMakeLists.txt
@@ -6,5 +6,10 @@ componentsdockplugin.cpp
 kde4_add_plugin(gluon_creator_dockplugin_componentsdock ${componentsdock_SRCS})
 target_link_libraries(gluon_creator_dockplugin_componentsdock ${GLUON_CREATOR_LIBS})
 
-install(TARGETS gluon_creator_dockplugin_componentsdock DESTINATION \
                ${PLUGIN_INSTALL_DIR})
-install(FILES gluon_creator_dockplugin_componentsdock.desktop DESTINATION \
${SERVICES_INSTALL_DIR}) \ No newline at end of file
+install(TARGETS gluon_creator_dockplugin_componentsdock
+        DESTINATION ${PLUGIN_INSTALL_DIR}
+        COMPONENT gluoncreator)
+
+install(FILES gluon_creator_dockplugin_componentsdock.desktop
+        DESTINATION ${SERVICES_INSTALL_DIR}
+        COMPONENT gluoncreator)
diff --git a/creator/plugins/docks/messagedock/CMakeLists.txt \
b/creator/plugins/docks/messagedock/CMakeLists.txt index 91fd124..e13e22c 100644
--- a/creator/plugins/docks/messagedock/CMakeLists.txt
+++ b/creator/plugins/docks/messagedock/CMakeLists.txt
@@ -6,5 +6,10 @@ set(messagedock_SRCS
 kde4_add_plugin(gluon_creator_dockplugin_messagedock ${messagedock_SRCS})
 target_link_libraries(gluon_creator_dockplugin_messagedock ${GLUON_CREATOR_LIBS})
 
-install(TARGETS gluon_creator_dockplugin_messagedock DESTINATION \
                ${PLUGIN_INSTALL_DIR})
-install(FILES gluon_creator_dockplugin_messagedock.desktop DESTINATION \
${SERVICES_INSTALL_DIR}) +install(TARGETS gluon_creator_dockplugin_messagedock
+        DESTINATION ${PLUGIN_INSTALL_DIR}
+        COMPONENT gluoncreator)
+
+install(FILES gluon_creator_dockplugin_messagedock.desktop
+        DESTINATION ${SERVICES_INSTALL_DIR}
+        COMPONENT gluoncreator)
diff --git a/creator/plugins/docks/projectdock/CMakeLists.txt \
b/creator/plugins/docks/projectdock/CMakeLists.txt index b59d60d..cba75e0 100644
--- a/creator/plugins/docks/projectdock/CMakeLists.txt
+++ b/creator/plugins/docks/projectdock/CMakeLists.txt
@@ -6,5 +6,10 @@ set(projectdock_SRCS
 kde4_add_plugin(gluon_creator_dockplugin_projectdock ${projectdock_SRCS})
 target_link_libraries(gluon_creator_dockplugin_projectdock ${GLUON_CREATOR_LIBS})
 
-install(TARGETS gluon_creator_dockplugin_projectdock DESTINATION \
                ${PLUGIN_INSTALL_DIR})
-install(FILES gluon_creator_dockplugin_projectdock.desktop DESTINATION \
${SERVICES_INSTALL_DIR}) +install(TARGETS gluon_creator_dockplugin_projectdock
+        DESTINATION ${PLUGIN_INSTALL_DIR}
+        COMPONENT gluoncreator)
+
+install(FILES gluon_creator_dockplugin_projectdock.desktop
+        DESTINATION ${SERVICES_INSTALL_DIR}
+        COMPONENT gluoncreator)
diff --git a/creator/plugins/docks/propertiesdock/CMakeLists.txt \
b/creator/plugins/docks/propertiesdock/CMakeLists.txt index cc04aff..c4b06e3 100644
--- a/creator/plugins/docks/propertiesdock/CMakeLists.txt
+++ b/creator/plugins/docks/propertiesdock/CMakeLists.txt
@@ -20,5 +20,10 @@ set(propertiesdock_SRCS
 kde4_add_plugin(gluon_creator_dockplugin_propertiesdock ${propertiesdock_SRCS})
 target_link_libraries(gluon_creator_dockplugin_propertiesdock ${GLUON_CORE_LIBS} \
${GLUON_CREATOR_LIBS})  
-install(TARGETS gluon_creator_dockplugin_propertiesdock DESTINATION \
                ${PLUGIN_INSTALL_DIR})
-install(FILES gluon_creator_dockplugin_propertiesdock.desktop DESTINATION \
${SERVICES_INSTALL_DIR}) +install(TARGETS gluon_creator_dockplugin_propertiesdock
+        DESTINATION ${PLUGIN_INSTALL_DIR}
+        COMPONENT gluoncreator)
+
+install(FILES gluon_creator_dockplugin_propertiesdock.desktop
+        DESTINATION ${SERVICES_INSTALL_DIR}
+        COMPONENT gluoncreator)
diff --git a/creator/plugins/docks/scenedock/CMakeLists.txt \
b/creator/plugins/docks/scenedock/CMakeLists.txt index 80947eb..da4daa2 100644
--- a/creator/plugins/docks/scenedock/CMakeLists.txt
+++ b/creator/plugins/docks/scenedock/CMakeLists.txt
@@ -6,5 +6,10 @@ set(scenedock_SRCS
 kde4_add_plugin(gluon_creator_dockplugin_scenedock ${scenedock_SRCS})
 target_link_libraries(gluon_creator_dockplugin_scenedock ${GLUON_CREATOR_LIBS})
 
-install(TARGETS gluon_creator_dockplugin_scenedock DESTINATION \
                ${PLUGIN_INSTALL_DIR})
-install(FILES gluon_creator_dockplugin_scenedock.desktop DESTINATION \
${SERVICES_INSTALL_DIR}) +install(TARGETS gluon_creator_dockplugin_scenedock
+        DESTINATION ${PLUGIN_INSTALL_DIR}
+        COMPONENT gluoncreator)
+
+install(FILES gluon_creator_dockplugin_scenedock.desktop
+        DESTINATION ${SERVICES_INSTALL_DIR}
+        COMPONENT gluoncreator)
diff --git a/creator/plugins/kparts/codeeditorpart/CMakeLists.txt \
b/creator/plugins/kparts/codeeditorpart/CMakeLists.txt index cf6e737..f9a7ca4 100644
--- a/creator/plugins/kparts/codeeditorpart/CMakeLists.txt
+++ b/creator/plugins/kparts/codeeditorpart/CMakeLists.txt
@@ -108,10 +108,16 @@ target_link_libraries(gluon_creator_codewidgetkpart
 
 ################## INSTALLS ##########################
 
-install( TARGETS gluon_creator_codewidgetkpart  DESTINATION ${PLUGIN_INSTALL_DIR} )
+install(TARGETS gluon_creator_codewidgetkpart
+        DESTINATION ${PLUGIN_INSTALL_DIR}
+        COMPONENT gluoncreator)
 
-install( FILES gluon_creator_codewidgetkpart.desktop DESTINATION \
${SERVICES_INSTALL_DIR} ) +install(FILES gluon_creator_codewidgetkpart.desktop
+        DESTINATION ${SERVICES_INSTALL_DIR}
+        COMPONENT gluoncreator)
 
-install (FILES nodetypes.gdl DESTINATION ${DATA_INSTALL_DIR} )
+install(FILES nodetypes.gdl
+        DESTINATION ${DATA_INSTALL_DIR}
+        COMPONENT gluoncreator)
 
 
diff --git a/creator/plugins/kparts/gluoneditorpart/CMakeLists.txt \
b/creator/plugins/kparts/gluoneditorpart/CMakeLists.txt index cb945bd..798b8b8 100644
--- a/creator/plugins/kparts/gluoneditorpart/CMakeLists.txt
+++ b/creator/plugins/kparts/gluoneditorpart/CMakeLists.txt
@@ -7,6 +7,12 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR} \
${CMAKE_CURRENT_BINARY_DIR} ${GL  kde4_add_plugin(gluon_editor_part \
${gluoneditorpart_SRCS})  target_link_libraries(gluon_editor_part \
${GLUON_ENGINE_LIBS} ${GLUON_GRAPHICS_LIBS} ${GLUON_INPUT_LIBS} ${KDE4_KDEUI_LIBS} \
${KDE4_KPARTS_LIBS} )  
-install(TARGETS gluon_editor_part DESTINATION ${PLUGIN_INSTALL_DIR})
-install(FILES gluon_editor_part.desktop DESTINATION ${SERVICES_INSTALL_DIR})
+install(TARGETS gluon_editor_part
+        DESTINATION ${PLUGIN_INSTALL_DIR}
+        COMPONENT gluoncreator)
+
+install(FILES gluon_editor_part.desktop
+        DESTINATION ${SERVICES_INSTALL_DIR}
+        COMPONENT gluoncreator)
+
 install(FILES gluoneditorpartui.rc DESTINATION ${DATA_INSTALL_DIR}/gluoneditorpart)
diff --git a/creator/plugins/kparts/gluonviewerpart/CMakeLists.txt \
b/creator/plugins/kparts/gluonviewerpart/CMakeLists.txt index b797e1b..50bfa1f 100644
--- a/creator/plugins/kparts/gluonviewerpart/CMakeLists.txt
+++ b/creator/plugins/kparts/gluonviewerpart/CMakeLists.txt
@@ -9,6 +9,14 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR} \
${CMAKE_CURRENT_BINARY_DIR} ${GL  kde4_add_plugin(gluon_viewer_part \
${gluonviewerpart_SRCS})  target_link_libraries(gluon_viewer_part \
${GLUON_ENGINE_LIBS} ${GLUON_GRAPHICS_LIBS} ${GLUON_INPUT_LIBS} ${KDE4_KDEUI_LIBS} \
${KDE4_KPARTS_LIBS} )  
-install(TARGETS gluon_viewer_part DESTINATION ${PLUGIN_INSTALL_DIR})
-install(FILES gluon_viewer_part.desktop DESTINATION ${SERVICES_INSTALL_DIR})
-install(FILES gluonviewerpartui.rc DESTINATION ${DATA_INSTALL_DIR}/gluonviewerpart)
+install(TARGETS gluon_viewer_part
+        DESTINATION ${PLUGIN_INSTALL_DIR}
+        COMPONENT gluoncreator)
+
+install(FILES gluon_viewer_part.desktop
+        DESTINATION ${SERVICES_INSTALL_DIR}
+        COMPONENT gluoncreator)
+
+install(FILES gluonviewerpartui.rc
+        DESTINATION ${DATA_INSTALL_DIR}/gluonviewerpart
+        COMPONENT gluoncreator)
diff --git a/creator/plugins/tools/vcs/CMakeLists.txt \
b/creator/plugins/tools/vcs/CMakeLists.txt index 57fb71d..4905b64 100644
--- a/creator/plugins/tools/vcs/CMakeLists.txt
+++ b/creator/plugins/tools/vcs/CMakeLists.txt
@@ -15,5 +15,10 @@ else(KDevPlatform_FOUND)
     target_link_libraries(gluon_creator_toolplugin_vcstool ${GLUON_CREATOR_LIBS})
 endif(KDevPlatform_FOUND)
 
-install(TARGETS gluon_creator_toolplugin_vcstool DESTINATION ${PLUGIN_INSTALL_DIR})
-install(FILES gluon_creator_toolplugin_vcstool.desktop DESTINATION \
${SERVICES_INSTALL_DIR}) +install(TARGETS gluon_creator_toolplugin_vcstool
+        DESTINATION ${PLUGIN_INSTALL_DIR}
+        COMPONENT gluoncreator)
+
+install(FILES gluon_creator_toolplugin_vcstool.desktop
+        DESTINATION ${SERVICES_INSTALL_DIR}
+        COMPONENT gluoncreator)


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic