summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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",
+);