From: Stephen Kelly Date: Fri, 3 Aug 2012 13:36:12 +0000 (+0200) Subject: Fix the dependencies of QQuickTest. X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=917a2cbc76a8433e550770b1414153ab16215381;p=konrad%2Fqtdeclarative.git 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 --- 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)