2010-11-15 19:55:17 +00:00
|
|
|
%modules = ( # path to module name map
|
|
|
|
"QtGui" => "$basedir/src/gui",
|
2011-05-06 22:02:01 +00:00
|
|
|
"QtWidgets" => "$basedir/src/widgets",
|
2011-08-16 14:38:56 +00:00
|
|
|
"QtPrintSupport" => "$basedir/src/printsupport",
|
2010-11-15 19:55:17 +00:00
|
|
|
"QtOpenGL" => "$basedir/src/opengl",
|
|
|
|
"QtCore" => "$basedir/src/corelib",
|
|
|
|
"QtXml" => "$basedir/src/xml",
|
|
|
|
"QtSql" => "$basedir/src/sql",
|
|
|
|
"QtNetwork" => "$basedir/src/network",
|
|
|
|
"QtTest" => "$basedir/src/testlib",
|
|
|
|
"QtDBus" => "$basedir/src/dbus",
|
2012-02-03 13:17:26 +00:00
|
|
|
"QtConcurrent" => "$basedir/src/concurrent",
|
2011-06-09 13:56:55 +00:00
|
|
|
"QtPlatformSupport" => "$basedir/src/platformsupport",
|
2010-11-15 19:55:17 +00:00
|
|
|
);
|
|
|
|
%moduleheaders = ( # restrict the module headers to those found in relative path
|
2011-08-16 08:50:00 +00:00
|
|
|
);
|
|
|
|
@allmoduleheadersprivate = (
|
2010-11-15 19:55:17 +00:00
|
|
|
);
|
|
|
|
%classnames = (
|
|
|
|
"qglobal.h" => "QtGlobal",
|
|
|
|
"qendian.h" => "QtEndian",
|
|
|
|
"qconfig.h" => "QtConfig",
|
|
|
|
"qplugin.h" => "QtPlugin",
|
|
|
|
"qalgorithms.h" => "QtAlgorithms",
|
|
|
|
"qcontainerfwd.h" => "QtContainerFwd",
|
|
|
|
"qdebug.h" => "QtDebug",
|
|
|
|
"qevent.h" => "QtEvents",
|
|
|
|
"qnamespace.h" => "Qt",
|
|
|
|
"qssl.h" => "QSsl",
|
|
|
|
"qtest.h" => "QTest",
|
|
|
|
"qtconcurrentmap.h" => "QtConcurrentMap",
|
|
|
|
"qtconcurrentfilter.h" => "QtConcurrentFilter",
|
|
|
|
"qtconcurrentrun.h" => "QtConcurrentRun",
|
2011-05-10 13:15:15 +00:00
|
|
|
"qtcoreversion.h" => "QtCoreVersion",
|
|
|
|
"qtdbusversion.h" => "QtDBusVersion",
|
|
|
|
"qtguiversion.h" => "QtGuiVersion",
|
|
|
|
"qtnetworkversion.h" => "QtNetworkVersion",
|
|
|
|
"qtopenglversion.h" => "QtOpenGLVersion",
|
|
|
|
"qtsqlversion.h" => "QtSqlVersion",
|
|
|
|
"qttestversion.h" => "QtTestVersion",
|
|
|
|
"qtxmlversion.h" => "QtXmlVersion",
|
2012-01-13 09:55:24 +00:00
|
|
|
"qtwidgetsversion.h" => "QtWidgetsVersion",
|
|
|
|
"qtprintsupportversion.h" => "QtPrintSupportVersion",
|
2012-02-03 13:17:26 +00:00
|
|
|
"qtconcurrentversion.h" => "QtConcurrentVersion",
|
2012-01-13 09:55:24 +00:00
|
|
|
"qtplatformsupportversion.h" => "QtPlatformSupportVersion",
|
2010-11-15 19:55:17 +00:00
|
|
|
);
|
|
|
|
%mastercontent = (
|
|
|
|
"core" => "#include <QtCore/QtCore>\n",
|
|
|
|
"gui" => "#include <QtGui/QtGui>\n",
|
2011-08-16 14:38:56 +00:00
|
|
|
"printsupport" => "#include <QtPrintSupport/QtPrintSupport>\n",
|
2011-05-07 20:05:51 +00:00
|
|
|
"widgets" => "#include <QtWidgets/QtWidgets>\n",
|
2010-11-15 19:55:17 +00:00
|
|
|
"network" => "#include <QtNetwork/QtNetwork>\n",
|
|
|
|
"opengl" => "#include <QtOpenGL/QtOpenGL>\n",
|
|
|
|
"xml" => "#include <QtXml/QtXml>\n",
|
2012-02-03 13:17:26 +00:00
|
|
|
"concurrent" => "#include <QtConcurrent/QtConcurrent>\n",
|
2010-11-15 19:55:17 +00:00
|
|
|
);
|
2010-11-25 02:21:06 +00:00
|
|
|
%modulepris = (
|
|
|
|
"QtCore" => "$basedir/src/modules/qt_core.pri",
|
|
|
|
"QtDBus" => "$basedir/src/modules/qt_dbus.pri",
|
|
|
|
"QtGui" => "$basedir/src/modules/qt_gui.pri",
|
2011-08-16 14:38:56 +00:00
|
|
|
"QtPrintSupport" => "$basedir/src/modules/qt_printsupport.pri",
|
2011-05-06 22:02:01 +00:00
|
|
|
"QtWidgets" => "$basedir/src/modules/qt_widgets.pri",
|
2010-11-25 02:21:06 +00:00
|
|
|
"QtNetwork" => "$basedir/src/modules/qt_network.pri",
|
|
|
|
"QtOpenGL" => "$basedir/src/modules/qt_opengl.pri",
|
|
|
|
"QtSql" => "$basedir/src/modules/qt_sql.pri",
|
|
|
|
"QtTest" => "$basedir/src/modules/qt_testlib.pri",
|
|
|
|
"QtXml" => "$basedir/src/modules/qt_xml.pri",
|
2012-02-03 13:17:26 +00:00
|
|
|
"QtConcurrent" => "$basedir/src/modules/qt_concurrent.pri",
|
2011-06-09 13:56:55 +00:00
|
|
|
"QtPlatformSupport" => "$basedir/src/modules/qt_platformsupport.pri",
|
2010-11-25 02:21:06 +00:00
|
|
|
);
|
2011-11-11 12:03:15 +00:00
|
|
|
%explicitheaders = (
|
|
|
|
"QtCore" => {
|
|
|
|
"QVariantHash" => "qvariant.h",
|
|
|
|
"QVariantList" => "qvariant.h",
|
|
|
|
"QVariantMap" => "qvariant.h",
|
|
|
|
}
|
|
|
|
);
|
2010-11-25 02:21:06 +00:00
|
|
|
|
2010-11-15 19:55:17 +00:00
|
|
|
@ignore_for_master_contents = ( "qt.h", "qpaintdevicedefs.h" );
|
Add qprocessordetection.h
This detects the target processor based on preprocessor #defines,
setting Q_PROCESSOR_${FAMILY} accordingly. Optional
Q_PROCESSOR_${FAMILY}_${REVISION/VARIANT} #defines are also provided,
usually dependent on how the compiler is invoked.
Currently detected families (and variants) include:
ARM (v5, v6, and v7)
X86 (i386 and x86_64, as X86_32 and X86_64 respectively)
IA-64
MIPS (I, II, III, IV, 32, 64)
Other families that currently are not detected, but Qt has (or had)
support for include:
Alpha
AVR32
Blackfin
PA-RISC
PowerPC (optional 64-bit variant)
S390 (and S390X 64-bit variant)
SH (and SH-4A)
SPARC (SPARC V9)
Detection for these is currently commented out, and can
be easily enabled later.
Change-Id: I571f245c189b9d80c7c3a5369ac595a271f37c8b
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
2012-02-05 12:10:55 +00:00
|
|
|
@ignore_for_include_check = ( "qsystemdetection.h", "qcompilerdetection.h", "qprocessordetection.h" );
|
2010-11-15 19:55:17 +00:00
|
|
|
@ignore_for_qt_begin_header_check = ( "qiconset.h", "qconfig.h", "qconfig-dist.h", "qconfig-large.h", "qconfig-medium.h", "qconfig-minimal.h", "qconfig-small.h", "qfeatures.h", "qt_windows.h" );
|
|
|
|
@ignore_for_qt_begin_namespace_check = ( "qconfig.h", "qconfig-dist.h", "qconfig-large.h", "qconfig-medium.h", "qconfig-minimal.h", "qconfig-small.h", "qfeatures.h", "qatomic_arch.h", "qatomic_windowsce.h", "qt_windows.h", "qatomic_macosx.h" );
|
|
|
|
@ignore_for_qt_module_check = ( "$modules{QtCore}/arch", "$modules{QtCore}/global", "$modules{QtTest}", "$modules{QtDBus}" );
|
2011-07-06 08:36:10 +00:00
|
|
|
# Module dependencies.
|
|
|
|
# Every module that is required to build this module should have one entry.
|
2011-04-27 10:34:11 +00:00
|
|
|
# Each of the module version specifiers can take one of the following values:
|
|
|
|
# - A specific Git revision.
|
2011-07-06 08:36:10 +00:00
|
|
|
# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
|
|
|
|
#
|
2011-04-27 10:34:11 +00:00
|
|
|
%dependencies = (
|
|
|
|
);
|