Add sync.profile and qt_ftp.pri files

Change-Id: I246ad5429661b09816ff9b14deb316b84820123c
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Shane Kearns 2012-04-16 15:36:04 +01:00 committed by Shane Kearns
parent 8a578c4c30
commit 3235eedfa4
2 changed files with 37 additions and 0 deletions

14
modules/qt_ftp.pri Normal file
View File

@ -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

23
sync.profile Normal file
View File

@ -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",
);