Skip to content

Commit 3235eed

Browse files
Shane KearnsShane Kearns
authored andcommitted
Add sync.profile and qt_ftp.pri files
Change-Id: I246ad5429661b09816ff9b14deb316b84820123c Reviewed-by: Thiago Macieira <[email protected]>
1 parent 8a578c4 commit 3235eed

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

modules/qt_ftp.pri

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
QT.ftp.VERSION = 5.0.0
2+
QT.ftp.MAJOR_VERSION = 5
3+
QT.ftp.MINOR_VERSION = 0
4+
QT.ftp.PATCH_VERSION = 0
5+
6+
QT.ftp.name = QtFtp
7+
QT.ftp.bins = $$QT_MODULE_BIN_BASE
8+
QT.ftp.includes = $$QT_MODULE_INCLUDE_BASE $$QT_MODULE_INCLUDE_BASE/QtFtp
9+
QT.ftp.private_includes = $$QT_MODULE_INCLUDE_BASE/QtFtp/$$QT.ftp.VERSION
10+
QT.ftp.sources = $$QT_MODULE_BASE/src/qftp
11+
QT.ftp.libs = $$QT_MODULE_LIB_BASE
12+
QT.ftp.plugins = $$QT_MODULE_PLUGIN_BASE
13+
QT.ftp.imports = $$QT_MODULE_IMPORT_BASE
14+
QT.ftp.depends = core network

sync.profile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
%modules = ( # path to module name map
2+
"QtFtp" => "$basedir/src/qftp",
3+
);
4+
%moduleheaders = ( # restrict the module headers to those found in relative path
5+
);
6+
%classnames = (
7+
);
8+
%mastercontent = (
9+
"core" => "#include <QtCore/QtCore>\n",
10+
"network" => "#include <QtNetwork/QtNetwork>\n",
11+
);
12+
%modulepris = (
13+
"QtFtp" => "$basedir/modules/qt_ftp.pri",
14+
);
15+
# Module dependencies.
16+
# Every module that is required to build this module should have one entry.
17+
# Each of the module version specifiers can take one of the following values:
18+
# - A specific Git revision.
19+
# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
20+
#
21+
%dependencies = (
22+
"qtbase" => "refs/heads/master",
23+
);

0 commit comments

Comments
 (0)