1 %modules = ( # path to module name map
2 "QtDeclarative" => "$basedir/src/declarative",
3 "QtQuick1" => "$basedir/src/qtquick1",
4 "QtQuickTest" => "$basedir/src/qmltest",
5 "QtQmlDevTools" => "$basedir/src/qmldevtools",
7 %moduleheaders = ( # restrict the module headers to those found in relative path
8 "QtQmlDevTools" => "../declarative/qml/parser",
11 "qtdeclarativeversion.h" => "QtDeclarativeVersion",
14 "gui" => "#include <QtGui/QtGui>\n",
15 "script" => "#include <QtScript/QtScript>\n",
16 "network" => "#include <QtNetwork/QtNetwork>\n",
17 "testlib" => "#include <QtTest/QtTest>\n",
20 "QtDeclarative" => "$basedir/modules/qt_declarative.pri",
21 "QtQuick1" => "$basedir/modules/qt_qtquick1.pri",
22 "QtQuickTest" => "$basedir/modules/qt_qmltest.pri",
23 "QtQmlDevTools" => "$basedir/modules/qt_qmldevtools.pri",
25 # Module dependencies.
26 # Every module that is required to build this module should have one entry.
27 # Each of the module version specifiers can take one of the following values:
28 # - A specific Git revision.
29 # - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
32 "qtbase" => "c7f80420649d8d37e25514bcd2859de1e21166d6",
33 "qtxmlpatterns" => "refs/heads/master",