forked from qt-creator/qt-creator
ProjectExplorer: Let user provide default build properties
Fixes: QTCREATORBUG-16458 Change-Id: I5f7a2450307a8d2e3392ca167411d1e00b58f05a Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -552,7 +552,10 @@ QMakeStepConfigWidget::QMakeStepConfigWidget(QMakeStep *step)
|
||||
connect(step, &QMakeStep::userArgumentsChanged,
|
||||
this, &QMakeStepConfigWidget::userArgumentsChanged);
|
||||
connect(step->qmakeBuildConfiguration(), &QmakeBuildConfiguration::qmlDebuggingChanged,
|
||||
this, &QMakeStepConfigWidget::linkQmlDebuggingLibraryChanged);
|
||||
this, [this] {
|
||||
linkQmlDebuggingLibraryChanged();
|
||||
askForRebuild(tr("QML Debugging"));
|
||||
});
|
||||
connect(step->project(), &Project::projectLanguagesUpdated,
|
||||
this, &QMakeStepConfigWidget::linkQmlDebuggingLibraryChanged);
|
||||
connect(step->target(), &Target::parsingFinished,
|
||||
@@ -614,7 +617,6 @@ void QMakeStepConfigWidget::linkQmlDebuggingLibraryChanged()
|
||||
{
|
||||
updateSummaryLabel();
|
||||
updateEffectiveQMakeCall();
|
||||
askForRebuild(tr("QML Debugging"));
|
||||
}
|
||||
|
||||
void QMakeStepConfigWidget::useQtQuickCompilerChanged()
|
||||
|
||||
Reference in New Issue
Block a user