summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShane Kearns <ext-shane.2.kearns@nokia.com>2012-04-16 15:36:04 +0100
committerShane Kearns <shane.kearns@accenture.com>2012-04-20 12:17:56 +0200
commit3235eedfa40b948de39566aa85c324ee0a9efaae (patch)
tree412225c309242bd9d377d2d0ad7d506a70c90c11
parent8a578c4c30ee4e1ccc74e88cb99ecdd0b8a066e4 (diff)
Add sync.profile and qt_ftp.pri files
Change-Id: I246ad5429661b09816ff9b14deb316b84820123c Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-rw-r--r--modules/qt_ftp.pri14
-rw-r--r--sync.profile23
2 files changed, 37 insertions, 0 deletions
diff --git a/modules/qt_ftp.pri b/modules/qt_ftp.pri
new file mode 100644
index 0000000..5da1a86
--- /dev/null
+++ b/modules/qt_ftp.pri
@@ -0,0 +1,14 @@
+QT.ftp.VERSION = 5.0.0
+QT.ftp.MAJOR_VERSION = 5
+QT.ftp.MINOR_VERSION = 0
+QT.ftp.PATCH_VERSION = 0
+
+QT.ftp.name = QtFtp
+QT.ftp.bins = $$QT_MODULE_BIN_BASE
+QT.ftp.includes = $$QT_MODULE_INCLUDE_BASE $$QT_MODULE_INCLUDE_BASE/QtFtp
+QT.ftp.private_includes = $$QT_MODULE_INCLUDE_BASE/QtFtp/$$QT.ftp.VERSION
+QT.ftp.sources = $$QT_MODULE_BASE/src/qftp
+QT.ftp.libs = $$QT_MODULE_LIB_BASE
+QT.ftp.plugins = $$QT_MODULE_PLUGIN_BASE
+QT.ftp.imports = $$QT_MODULE_IMPORT_BASE
+QT.ftp.depends = core network
diff --git a/sync.profile b/sync.profile
new file mode 100644
index 0000000..aecccb5
--- /dev/null
+++ b/sync.profile
@@ -0,0 +1,23 @@
+%modules = ( # path to module name map
+ "QtFtp" => "$basedir/src/qftp",
+);
+%moduleheaders = ( # restrict the module headers to those found in relative path
+);
+%classnames = (
+);
+%mastercontent = (
+ "core" => "#include <QtCore/QtCore>\n",
+ "network" => "#include <QtNetwork/QtNetwork>\n",
+);
+%modulepris = (
+ "QtFtp" => "$basedir/modules/qt_ftp.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",
+);