From d514ff8d305f295bd3a5f1b9bc3360995dd4e021 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Sat, 16 Oct 2010 18:29:32 +0000 Subject: [PATCH] Don't install files outside CMAKE_INSTALL_PREFIX svn path=/trunk/KDE/kdebase/runtime/; revision=1186512 --- declarativeimports/graphicswidgets/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/declarativeimports/graphicswidgets/CMakeLists.txt b/declarativeimports/graphicswidgets/CMakeLists.txt index 691e2e25f..69a0998e4 100644 --- a/declarativeimports/graphicswidgets/CMakeLists.txt +++ b/declarativeimports/graphicswidgets/CMakeLists.txt @@ -17,5 +17,5 @@ qt4_automoc(${graphicswidgetsbindings_SRCS}) add_library(graphicswidgetsbindingsplugin SHARED ${graphicswidgetsbindings_SRCS}) target_link_libraries(graphicswidgetsbindingsplugin ${KDE4_PLASMA_LIBS} ${QT_QTSCRIPT_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY}) -install(TARGETS graphicswidgetsbindingsplugin DESTINATION ${QT_IMPORTS_DIR}/org/kde/plasma/graphicswidgets) -install(FILES qmldir DESTINATION ${QT_IMPORTS_DIR}/org/kde/plasma/graphicswidgets) +install(TARGETS graphicswidgetsbindingsplugin DESTINATION ${PLUGIN_INSTALL_DIR}/imports/org/kde/plasma/graphicswidgets) +install(FILES qmldir DESTINATION ${PLUGIN_INSTALL_DIR}/imports/org/kde/plasma/graphicswidgets)