runner infra into a subdir

svn path=/trunk/KDE/kdelibs/; revision=1019561
This commit is contained in:
Aaron J. Seigo 2009-09-03 21:21:27 +00:00
parent 01ec8984e2
commit b711b96ee0
13 changed files with 17 additions and 16 deletions

View File

@ -7,6 +7,7 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/solid/ ${CMAKE_SOURCE_DIR}/solid/
${CMAKE_SOURCE_DIR}/threadweaver/ ${CMAKE_SOURCE_DIR}/threadweaver/
${CMAKE_SOURCE_DIR}/plasma/remote ${CMAKE_SOURCE_DIR}/plasma/remote
${CMAKE_SOURCE_DIR}/plasma/runners
${CMAKE_SOURCE_DIR}/plasma/private/qtjolie-branch/qtjolie ${CMAKE_SOURCE_DIR}/plasma/private/qtjolie-branch/qtjolie
${CMAKE_SOURCE_DIR}/plasma/private/qtjolie-branch ${CMAKE_SOURCE_DIR}/plasma/private/qtjolie-branch
${CMAKE_SOURCE_DIR}/plasma/private/qtjolie-branch/includes ${CMAKE_SOURCE_DIR}/plasma/private/qtjolie-branch/includes
@ -38,7 +39,6 @@ set(plasmagik_SRCS
set(plasma_LIB_SRCS set(plasma_LIB_SRCS
${plasmagik_SRCS} ${plasmagik_SRCS}
abstractrunner.cpp
animationdriver.cpp animationdriver.cpp
animator.cpp animator.cpp
applet.cpp applet.cpp
@ -85,7 +85,6 @@ set(plasma_LIB_SRCS
private/tooltip.cpp private/tooltip.cpp
private/wallpaperrenderthread.cpp private/wallpaperrenderthread.cpp
private/windowpreview.cpp private/windowpreview.cpp
querymatch.cpp
remote/accessmanager.cpp remote/accessmanager.cpp
remote/accessappletjob.cpp remote/accessappletjob.cpp
remote/authorizationinterface.cpp remote/authorizationinterface.cpp
@ -94,9 +93,11 @@ set(plasma_LIB_SRCS
remote/clientpinrequest.cpp remote/clientpinrequest.cpp
remote/credentials.cpp remote/credentials.cpp
remote/serviceaccessjob.cpp remote/serviceaccessjob.cpp
runnercontext.cpp runners/abstractrunner.cpp
runnermanager.cpp runners/querymatch.cpp
runnersyntax.cpp runners/runnercontext.cpp
runners/runnermanager.cpp
runners/runnersyntax.cpp
scripting/appletscript.cpp scripting/appletscript.cpp
scripting/dataenginescript.cpp scripting/dataenginescript.cpp
scripting/runnerscript.cpp scripting/runnerscript.cpp
@ -221,7 +222,6 @@ set(plasmagik_HEADERS
install(FILES ${plasmagik_HEADERS} DESTINATION ${INCLUDE_INSTALL_DIR}/plasma/ COMPONENT Devel) install(FILES ${plasmagik_HEADERS} DESTINATION ${INCLUDE_INSTALL_DIR}/plasma/ COMPONENT Devel)
set(plasma_LIB_INCLUDES set(plasma_LIB_INCLUDES
abstractrunner.h
animationdriver.h animationdriver.h
animator.h animator.h
applet.h applet.h
@ -244,7 +244,6 @@ set(plasma_LIB_INCLUDES
plasma.h plasma.h
plasma_export.h plasma_export.h
popupapplet.h popupapplet.h
querymatch.h
remote/accessappletjob.h remote/accessappletjob.h
remote/accessmanager.h remote/accessmanager.h
remote/authorizationmanager.h remote/authorizationmanager.h
@ -253,9 +252,11 @@ set(plasma_LIB_INCLUDES
remote/clientpinrequest.h remote/clientpinrequest.h
remote/credentials.h remote/credentials.h
remote/serviceaccessjob.h remote/serviceaccessjob.h
runnercontext.h runners/abstractrunner.h
runnermanager.h runners/querymatch.h
runnersyntax.h runners/runnercontext.h
runners/runnermanager.h
runners/runnersyntax.h
service.h service.h
servicejob.h servicejob.h
svg.h svg.h

View File

@ -27,7 +27,7 @@
#include <Weaver/ThreadWeaver.h> #include <Weaver/ThreadWeaver.h>
#include "runnerjobs.h" #include "runnerjobs.h"
#include "querymatch.h" #include "plasma/runners/querymatch.h"
using ThreadWeaver::Job; using ThreadWeaver::Job;
using ThreadWeaver::Weaver; using ThreadWeaver::Weaver;

View File

@ -32,8 +32,8 @@
#include <kservicetypetrader.h> #include <kservicetypetrader.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <plasma/querymatch.h>
#include <plasma/package.h> #include <plasma/package.h>
#include <plasma/runners/querymatch.h>
#include "scripting/runnerscript.h" #include "scripting/runnerscript.h"

View File

@ -28,9 +28,9 @@
#include <kservice.h> #include <kservice.h>
#include <plasma/plasma_export.h> #include <plasma/plasma_export.h>
#include <plasma/querymatch.h> #include <plasma/runners/querymatch.h>
#include <plasma/runnercontext.h> #include <plasma/runners/runnercontext.h>
#include <plasma/runnersyntax.h> #include <plasma/runners/runnersyntax.h>
#include <plasma/version.h> #include <plasma/version.h>
class QAction; class QAction;

View File

@ -19,8 +19,8 @@
#include "plasma/scripting/runnerscript.h" #include "plasma/scripting/runnerscript.h"
#include "plasma/abstractrunner.h"
#include "plasma/package.h" #include "plasma/package.h"
#include "plasma/runners/abstractrunner.h"
namespace Plasma namespace Plasma
{ {