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