aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmltest/qmltest.pro
diff options
context:
space:
mode:
authorStephen Kelly <stephen.kelly@kdab.com>2012-08-03 15:36:12 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-11 13:53:23 +0200
commit917a2cbc76a8433e550770b1414153ab16215381 (patch)
tree50e09d19a35ec37d164a8db41eff4dd44bdd6d52 /src/qmltest/qmltest.pro
parent421b21858579f7124f17948799e52c26fae685b2 (diff)
Fix the dependencies of QQuickTest.
It consists of only one public method whose API only depends on QtCore headers. Make everything else 'private' in the sense of what is communicated by the buildsystem. Task-number: QTBUG-26753 Change-Id: Id9d78339173c8f3f733103325c6593b8960a0585 Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
Diffstat (limited to 'src/qmltest/qmltest.pro')
-rw-r--r--src/qmltest/qmltest.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qmltest/qmltest.pro b/src/qmltest/qmltest.pro
index bcbc7b54d0..f1b3fb5c5b 100644
--- a/src/qmltest/qmltest.pro
+++ b/src/qmltest/qmltest.pro
@@ -4,7 +4,8 @@ TARGET = QtQuickTest
CONFIG += dll warn_on
DEFINES += QT_NO_URL_CAST_FROM_STRING
-QT += testlib testlib-private qml quick gui qml-private v8-private core-private
+QT = core
+QT_PRIVATE = testlib-private quick qml-private v8-private gui core-private
load(qt_module)