File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
+ );
You can’t perform that action at this time.
0 commit comments