aboutsummaryrefslogtreecommitdiffstats
path: root/sync.profile
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@theqtcompany.com>2015-08-24 14:57:16 +0200
committerMitch Curtis <mitch.curtis@theqtcompany.com>2015-09-02 15:19:00 +0000
commitdbd87500bcc30882ed98ae96c880f42f5facf42d (patch)
tree34b7d14a4c3cceababa48be5d5974075a45aec73 /sync.profile
parent0cc1aadcd1452b8290d7b9f18d88019f2435a95b (diff)
Add sync.profile.
This is necessary for the repository to be added to CI. Change-Id: I7b3d3357b0b9dcec8d5b27cb61a7fb3b6307082c Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com> Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile19
1 files changed, 19 insertions, 0 deletions
diff --git a/sync.profile b/sync.profile
new file mode 100644
index 00000000..5e7d11cc
--- /dev/null
+++ b/sync.profile
@@ -0,0 +1,19 @@
+%modules = ( # path to module name map
+);
+%moduleheaders = ( # restrict the module headers to those found in relative path
+);
+# Module dependencies.
+# Every module that is required to build this module should have one entry.
+# Each of the module version specifiers can take one of the following values:
+# - A specific Git revision.
+# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
+# - an empty string to use the same branch under test (dependencies will become "refs/heads/master" if we are in the master branch)
+#
+%dependencies = (
+ "qtbase" => "refs/heads/5.6",
+ "qtdeclarative" => "refs/heads/5.6",
+ "qtmultimedia" => "refs/heads/5.6",
+ "qtquickcontrols" => "refs/heads/5.6",
+ "qtsvg" => "refs/heads/5.6",
+ "qtxmlpatterns" => "refs/heads/5.6",
+);