summaryrefslogtreecommitdiffstats
path: root/sync.profile
diff options
context:
space:
mode:
authorSarah Smith <sarah.j.smith@nokia.com>2011-07-15 17:19:20 +1000
committerSarah Jane Smith <sarasmit@codereview.qt.nokia.com>2011-07-18 01:05:33 +0200
commit88c2dfa9860f45330108d094f3cb65e66ee0d1d1 (patch)
treef9e6fb26172aeaf3075f6ae284379192d6446d9f /sync.profile
parent85c45b7146b73e29d7f176418fd44ae61acd9b30 (diff)
Add qt5 modularization stuff.
Change-Id: I8cbccbbb253f1c83d692aa92056774d70e7f0a7f Reviewed-on: http://codereview.qt.nokia.com/1720 Reviewed-by: Sarah Jane Smith
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile32
1 files changed, 32 insertions, 0 deletions
diff --git a/sync.profile b/sync.profile
new file mode 100644
index 000000000..9af7190c6
--- /dev/null
+++ b/sync.profile
@@ -0,0 +1,32 @@
+%modules = ( # path to module name map
+ "Qt3D" => "$basedir/src/threed",
+ "Qt3DQuick" => "$basedir/src/quick3d",
+);
+%moduleheaders = ( # restrict the module headers to those found in relative path
+);
+%classnames = (
+ "qtquick3dversion.h" => "QtQuick3DVersion",
+);
+%mastercontent = (
+ "core" => "#include <QtCore/QtCore>\n",
+ "gui" => "#include <QtGui/QtGui>\n",
+ "opengl" => "#include <QtOpenGL/QtOpenGL>\n",
+ "declarative" => "#include <QtDeclarative/QDeclarative>\n",
+ "network" => "#include <QtNetwork/QtNetwork>\n"
+);
+%modulepris = (
+ "Qt3D" => "$basedir/modules/qt_qt3d.pri",
+ "Qt3DQuick" => "$basedir/modules/qt_qt3dquick.pri",
+);
+# Modules and programs, and their dependencies.
+# Each of the module version specifiers can take one of the following values:
+# - A specific Git revision.
+# - "LATEST_REVISION", to always test against the latest revision.
+# - "LATEST_RELEASE", to always test against the latest public release.
+# - "THIS_REPOSITORY", to indicate that the module is in this repository.
+%dependencies = (
+ "Qt3D" => {
+ "QtCore" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
+ "QtDeclarative" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
+ },
+);