From 917a2cbc76a8433e550770b1414153ab16215381 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Fri, 3 Aug 2012 15:36:12 +0200 Subject: [PATCH] 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 --- src/qmltest/qmltest.pro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qmltest/qmltest.pro b/src/qmltest/qmltest.pro index bcbc7b5..f1b3fb5 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) -- 2.7.4