forked from qt-creator/qt-creator
don't validate executable paths & working dirs in build & run configs
it's well within expectations that they do not exist at the time of configuration (especially when shadow building). additionally, keeping the validation info (macros and environment) up-to-date would require a notification infrastructure which is just not worth the effort.
This commit is contained in:
@@ -62,8 +62,8 @@ CustomExecutableConfigurationWidget::CustomExecutableConfigurationWidget(CustomE
|
||||
layout->setMargin(0);
|
||||
|
||||
m_executableChooser = new Utils::PathChooser(this);
|
||||
m_executableChooser->setEnvironment(rc->environment());
|
||||
m_executableChooser->setExpectedKind(Utils::PathChooser::Command);
|
||||
m_executableChooser->setEnvironment(rc->environment());
|
||||
layout->addRow(tr("Executable:"), m_executableChooser);
|
||||
|
||||
m_commandLineArgumentsLineEdit = new QLineEdit(this);
|
||||
|
||||
Reference in New Issue
Block a user