configure{.exe}: enable 'tools' as a default build part
Tools for each module should be enabled by default. Prior to qt_parts.prf, they have been enabled by default, but only by accident - the value of QT_BUILD_PARTS with respect to 'tools' was generally not respected. Change-Id: Icd49d6128d4050ff1c865967a563e9ab88c5a3a2 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>bb10
parent
d219ea1ebc
commit
18ddd367b8
|
|
@ -719,7 +719,7 @@ CFG_SSE=auto
|
|||
CFG_FONTCONFIG=auto
|
||||
CFG_LIBFREETYPE=auto
|
||||
CFG_SQL_AVAILABLE=
|
||||
QT_DEFAULT_BUILD_PARTS="libs examples"
|
||||
QT_DEFAULT_BUILD_PARTS="libs tools examples"
|
||||
CFG_BUILD_PARTS=""
|
||||
CFG_NOBUILD_PARTS=""
|
||||
CFG_RELEASE_QMAKE=no
|
||||
|
|
|
|||
|
|
@ -188,7 +188,7 @@ Configure::Configure(int& argc, char** argv)
|
|||
}
|
||||
}
|
||||
|
||||
defaultBuildParts << QStringLiteral("libs") << QStringLiteral("examples");
|
||||
defaultBuildParts << QStringLiteral("libs") << QStringLiteral("tools") << QStringLiteral("examples");
|
||||
dictionary[ "QT_SOURCE_TREE" ] = sourcePath;
|
||||
dictionary[ "QT_BUILD_TREE" ] = buildPath;
|
||||
dictionary[ "QT_INSTALL_PREFIX" ] = installPath;
|
||||
|
|
|
|||
Loading…
Reference in New Issue