summaryrefslogtreecommitdiffstats
path: root/sync.profile
diff options
context:
space:
mode:
authorMichael Zanetti <michael.zanetti@nokia.com>2011-08-24 14:09:22 +1000
committerRohan McGovern <rohan.mcgovern@nokia.com>2011-08-24 14:10:36 +1000
commit29ba8297443cf76d4f647bde329d62c2a567c709 (patch)
tree88875199053cd88b3b3521c829277f209e815159 /sync.profile
Initial commit.
From qt5connectivity.tar.gz, md5 317c149d6f8c07d09632353188582834
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile33
1 files changed, 33 insertions, 0 deletions
diff --git a/sync.profile b/sync.profile
new file mode 100644
index 00000000..449c3943
--- /dev/null
+++ b/sync.profile
@@ -0,0 +1,33 @@
+%modules = ( # path to module name map
+ "QtBluetooth" => "$basedir/src/bluetooth",
+ "QtNfc" => "$basedir/src/nfc",
+);
+%moduleheaders = ( # restrict the module headers to those found in relative path
+);
+%classnames = (
+ "qtbluetoothversion.h" => "QtBluetoothVersion",
+ "qtnfcversion.h" => "QtNfcVersion",
+);
+%mastercontent = (
+ "bluetooth" => "#include <QtBluetooth/QtBluetooth>\n",
+ "nfc" => "#include <QtNfc/QtNfc>\n",
+);
+%modulepris = (
+ "QtBluetooth" => "$basedir/modules/qt_bluetooth.pri",
+ "QtNfc" => "$basedir/modules/qt_nfc.pri",
+);
+# 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)
+#
+%dependencies = (
+ "qtbase" => "refs/heads/master",
+ "qtserviceframework" => "refs/heads/master",
+);
+
+# Compile tests
+%configtests = (
+ "bluez" => {},
+);