summaryrefslogtreecommitdiff
path: root/sync.profile
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2011-04-27 12:34:19 +0200
committeraxis <qt-info@nokia.com>2011-04-27 12:34:19 +0200
commit4d15ca64fc7ca81bdadba9fbeb84d4e98a6c0edc (patch)
treef410d399e1b83df0301ba9d7fd782b83a65c2896 /sync.profile
parent9c564d567e2fc19c0f29f69685a84bee2dbdfa99 (diff)
downloadqtscript-4d15ca64fc7ca81bdadba9fbeb84d4e98a6c0edc.tar.gz
Added dependency information to the sync.profile.
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile16
1 files changed, 16 insertions, 0 deletions
diff --git a/sync.profile b/sync.profile
index 4bc73c0..dda58af 100644
--- a/sync.profile
+++ b/sync.profile
@@ -15,3 +15,19 @@
"QtScript" => "$basedir/modules/qt_script.pri",
"QtScriptTools" => "$basedir/modules/qt_scripttools.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 = (
+ "QtScript" => {
+ "QtCore" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
+ },
+ "QtScriptTools" => {
+ "QtCore" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
+ "QtGui" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
+ "QtScript" => "THIS_REPOSITORY",
+ },
+);