diff options
Diffstat (limited to 'src/plugins/autotoolsprojectmanager/autotoolstarget.cpp')
-rw-r--r-- | src/plugins/autotoolsprojectmanager/autotoolstarget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/autotoolsprojectmanager/autotoolstarget.cpp b/src/plugins/autotoolsprojectmanager/autotoolstarget.cpp index c061fe9ac74..c7917e50b1c 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolstarget.cpp +++ b/src/plugins/autotoolsprojectmanager/autotoolstarget.cpp @@ -42,9 +42,9 @@ #include "autoreconfstep.h" #include "configurestep.h" -#include <projectexplorer/customexecutablerunconfiguration.h> #include <projectexplorer/buildsteplist.h> #include <projectexplorer/projectexplorerconstants.h> +#include <qtsupport/customexecutablerunconfiguration.h> #include <extensionsystem/pluginmanager.h> #include <QApplication> @@ -152,7 +152,7 @@ AutotoolsTarget *AutotoolsTargetFactory::create(Project *parent, const Core::Id t->addDeployConfiguration(t->createDeployConfiguration(Core::Id(ProjectExplorer::Constants::DEFAULT_DEPLOYCONFIGURATION_ID))); // User needs to choose where the executable file is. // TODO: Parse the file in *Anjuta style* to be able to add custom RunConfigurations. - t->addRunConfiguration(new CustomExecutableRunConfiguration(t)); + t->addRunConfiguration(new QtSupport::CustomExecutableRunConfiguration(t)); return t; } |