auto-generate module pris
[profile/ivi/qtdeclarative.git] / sync.profile
1 %modules = ( # path to module name map
2     "QtQml" => "$basedir/src/qml",
3     "QtQuick" => "$basedir/src/quick",
4     "QtQuickParticles" => "$basedir/src/particles",
5     "QtQuickTest" => "$basedir/src/qmltest",
6     "QtQmlDevTools" => "$basedir/src/qmldevtools",
7 );
8 %moduleheaders = ( # restrict the module headers to those found in relative path
9     "QtQmlDevTools" => "../qml/qml/parser",
10 );
11 %classnames = (
12     "qtqmlversion.h" => "QtQmlVersion",
13 );
14 %mastercontent = (
15     "gui" => "#include <QtGui/QtGui>\n",
16     "network" => "#include <QtNetwork/QtNetwork>\n",
17     "testlib" => "#include <QtTest/QtTest>\n",
18     "qml" => "#include <QtQml/QtQml>\n",
19     "quick" => "#include <QtQuick/QtQuick>\n",
20 );
21 %deprecatedheaders = (
22     "QtQml" => {
23         "QQmlImageProvider" => "QtQuick/QQuickImageProvider",
24         "qqmlimageprovider.h" => "QtQuick/qquickimageprovider.h",
25     },
26 );
27 # Module dependencies.
28 # Every module that is required to build this module should have one entry.
29 # Each of the module version specifiers can take one of the following values:
30 #   - A specific Git revision.
31 #   - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
32 #
33 %dependencies = (
34         "qtbase" => "refs/heads/master",
35         "qtxmlpatterns" => "refs/heads/master",
36         "qtjsbackend" => "refs/heads/master",
37 );