From 3235eedfa40b948de39566aa85c324ee0a9efaae Mon Sep 17 00:00:00 2001 From: Shane Kearns Date: Mon, 16 Apr 2012 15:36:04 +0100 Subject: [PATCH] Add sync.profile and qt_ftp.pri files Change-Id: I246ad5429661b09816ff9b14deb316b84820123c Reviewed-by: Thiago Macieira --- modules/qt_ftp.pri | 14 ++++++++++++++ sync.profile | 23 +++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 modules/qt_ftp.pri create mode 100644 sync.profile 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 \n", + "network" => "#include \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", +);