summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Christian <andrew.christian@nokia.com>2012-02-29 10:40:13 +0100
committerChris Craig <ext-chris.craig@nokia.com>2012-02-29 10:54:49 +0100
commite3f8ad46768b54db71b0496d14719125e6ed2225 (patch)
tree8e5fbaf89b154bd1b722d69a88a08735ac78960d
parentade5b80bc37fa49732c3003e7cc2cc13c6826ef8 (diff)
Removed dependencies on QtGui where possible
Change-Id: I57f552da2f45069fab73782e7229af484cd2636b Reviewed-by: Chris Craig <ext-chris.craig@nokia.com>
-rw-r--r--src/core/core-lib.pri1
-rw-r--r--tests/auto/processmanager/test/test.pro2
-rw-r--r--tests/auto/processmanager/testClient/testClient.pro1
-rw-r--r--tests/auto/processmanager/testForkLauncher/testForkLauncher.pro1
-rw-r--r--tests/auto/processmanager/testPipeLauncher/testPipeLauncher.pro1
-rw-r--r--tests/auto/processmanager/testPrelaunch/testPrelaunch.pro1
-rw-r--r--tests/auto/processmanager/testSocketLauncher/testSocketLauncher.pro1
-rw-r--r--tests/auto/processmanager/tst_processmanager.cpp3
8 files changed, 7 insertions, 4 deletions
diff --git a/src/core/core-lib.pri b/src/core/core-lib.pri
index 26a9423..7378e08 100644
--- a/src/core/core-lib.pri
+++ b/src/core/core-lib.pri
@@ -1,4 +1,5 @@
QT += network jsonstream
+QT -= gui
INCLUDEPATH += $$PWD
diff --git a/tests/auto/processmanager/test/test.pro b/tests/auto/processmanager/test/test.pro
index 759b956..1df23e3 100644
--- a/tests/auto/processmanager/test/test.pro
+++ b/tests/auto/processmanager/test/test.pro
@@ -1,7 +1,7 @@
CONFIG += testcase
macx:CONFIG -= app_bundle
-QT += core network declarative testlib processmanager
+QT += core network testlib processmanager
QT -= gui
include(../processmanager.pri)
diff --git a/tests/auto/processmanager/testClient/testClient.pro b/tests/auto/processmanager/testClient/testClient.pro
index 0e383d8..4514bb9 100644
--- a/tests/auto/processmanager/testClient/testClient.pro
+++ b/tests/auto/processmanager/testClient/testClient.pro
@@ -2,6 +2,7 @@ CONFIG -= app_bundle
include(../processmanager.pri)
QT += processmanager
+QT -= gui
DESTDIR = ./
SOURCES = main.cpp
diff --git a/tests/auto/processmanager/testForkLauncher/testForkLauncher.pro b/tests/auto/processmanager/testForkLauncher/testForkLauncher.pro
index bb5184a..b8333ea 100644
--- a/tests/auto/processmanager/testForkLauncher/testForkLauncher.pro
+++ b/tests/auto/processmanager/testForkLauncher/testForkLauncher.pro
@@ -1,5 +1,6 @@
CONFIG -= app_bundle
QT += processmanager
+QT -= gui
include(../processmanager.pri)
diff --git a/tests/auto/processmanager/testPipeLauncher/testPipeLauncher.pro b/tests/auto/processmanager/testPipeLauncher/testPipeLauncher.pro
index f94be42..d568053 100644
--- a/tests/auto/processmanager/testPipeLauncher/testPipeLauncher.pro
+++ b/tests/auto/processmanager/testPipeLauncher/testPipeLauncher.pro
@@ -1,5 +1,6 @@
CONFIG -= app_bundle
QT += processmanager
+QT -= gui
include(../processmanager.pri)
diff --git a/tests/auto/processmanager/testPrelaunch/testPrelaunch.pro b/tests/auto/processmanager/testPrelaunch/testPrelaunch.pro
index 151638b..b9b230e 100644
--- a/tests/auto/processmanager/testPrelaunch/testPrelaunch.pro
+++ b/tests/auto/processmanager/testPrelaunch/testPrelaunch.pro
@@ -1,5 +1,6 @@
CONFIG -= app_bundle
QT += processmanager
+QT -= gui
include(../processmanager.pri)
diff --git a/tests/auto/processmanager/testSocketLauncher/testSocketLauncher.pro b/tests/auto/processmanager/testSocketLauncher/testSocketLauncher.pro
index 8aed601..ed79d59 100644
--- a/tests/auto/processmanager/testSocketLauncher/testSocketLauncher.pro
+++ b/tests/auto/processmanager/testSocketLauncher/testSocketLauncher.pro
@@ -1,5 +1,6 @@
CONFIG -= app_bundle
QT += processmanager jsonstream
+QT -= gui
include(../processmanager.pri)
diff --git a/tests/auto/processmanager/tst_processmanager.cpp b/tests/auto/processmanager/tst_processmanager.cpp
index 729c12c..e7fb012 100644
--- a/tests/auto/processmanager/tst_processmanager.cpp
+++ b/tests/auto/processmanager/tst_processmanager.cpp
@@ -40,9 +40,6 @@
#include <QtTest>
#include <QtCore/QMetaType>
#include <QFileInfo>
-#include <QDeclarativeEngine>
-#include <QDeclarativeComponent>
-#include <QDeclarativeProperty>
#include <QLocalSocket>
#include "process.h"