Improve object attributes documentation
[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 %deprecatedheaders = (
12     "QtQml" => {
13         "QQmlImageProvider" => "QtQuick/QQuickImageProvider",
14         "qqmlimageprovider.h" => "QtQuick/qquickimageprovider.h",
15     },
16 );
17 # Module dependencies.
18 # Every module that is required to build this module should have one entry.
19 # Each of the module version specifiers can take one of the following values:
20 #   - A specific Git revision.
21 #   - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
22 #
23 %dependencies = (
24         "qtbase" => "refs/heads/master",
25         "qtxmlpatterns" => "refs/heads/master",
26         "qtjsbackend" => "refs/heads/master",
27 );