forked from qt-creator/qt-creator
Remove QtQuick1 debugging option from build & run settings
We don't need to support QtQuick1 anymore. Consequently, the minimum Qt version for QML debugging is bumped to 5.0.0. Change-Id: I9528de3f6869fb391eaf9560a148e03f6067b9de Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
This commit is contained in:
@@ -169,11 +169,8 @@ QMakeStepConfig QMakeStep::deducedArguments()
|
||||
|
||||
config.archConfig = QMakeStepConfig::targetArchFor(targetAbi, version);
|
||||
config.osType = QMakeStepConfig::osTypeFor(targetAbi, version);
|
||||
if (linkQmlDebuggingLibrary() && version) {
|
||||
config.linkQmlDebuggingQQ1 = true;
|
||||
if (version->qtVersion().majorVersion >= 5)
|
||||
config.linkQmlDebuggingQQ2 = true;
|
||||
}
|
||||
if (linkQmlDebuggingLibrary() && version && version->qtVersion().majorVersion >= 5)
|
||||
config.linkQmlDebuggingQQ2 = true;
|
||||
|
||||
if (useQtQuickCompiler() && version)
|
||||
config.useQtQuickCompiler = true;
|
||||
@@ -868,8 +865,6 @@ QStringList QMakeStepConfig::toArguments() const
|
||||
else if (osType == IphoneOS)
|
||||
arguments << QLatin1String("CONFIG+=iphoneos");
|
||||
|
||||
if (linkQmlDebuggingQQ1)
|
||||
arguments << QLatin1String("CONFIG+=declarative_debug");
|
||||
if (linkQmlDebuggingQQ2)
|
||||
arguments << QLatin1String("CONFIG+=qml_debug");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user