diff options
author | Tobias Hunger <[email protected]> | 2012-05-16 16:24:16 +0200 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2012-05-18 15:48:26 +0200 |
commit | 5a79945ef6a7e43b01e1d60ff4db614439e1091a (patch) | |
tree | 549977c4b228dc40bde021ef679d0f814a15238c /src/plugins/madde/qt4maemotarget.cpp | |
parent | 5c23c44ed099500850f45ae0250a519ba4a18493 (diff) |
DebuggingHelper: Move to QtSupport
* Move debugginghelper to QtSupport. ProjectExplorer should not start
looking for Qt versions!
* Make autotools and generic project plugins depend on QtSupport
Change-Id: If28418a85e3696cba713e66148c893a5a9b6adc7
Reviewed-by: Daniel Teske <[email protected]>
Diffstat (limited to 'src/plugins/madde/qt4maemotarget.cpp')
-rw-r--r-- | src/plugins/madde/qt4maemotarget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/madde/qt4maemotarget.cpp b/src/plugins/madde/qt4maemotarget.cpp index 61e59c2d4fe..6c5326a7904 100644 --- a/src/plugins/madde/qt4maemotarget.cpp +++ b/src/plugins/madde/qt4maemotarget.cpp @@ -44,7 +44,6 @@ #include <coreplugin/iversioncontrol.h> #include <coreplugin/vcsmanager.h> #include <projectexplorer/abi.h> -#include <projectexplorer/customexecutablerunconfiguration.h> #include <projectexplorer/projectexplorer.h> #include <projectexplorer/projectnodes.h> #include <projectexplorer/toolchain.h> @@ -52,6 +51,7 @@ #include <qt4projectmanager/qt4buildconfiguration.h> #include <qt4projectmanager/qt4nodes.h> #include <qtsupport/baseqtversion.h> +#include <qtsupport/customexecutablerunconfiguration.h> #include <remotelinux/deploymentsettingsassistant.h> #include <utils/fileutils.h> #include <utils/filesystemwatcher.h> @@ -180,7 +180,7 @@ void AbstractQt4MaemoTarget::createApplicationProFiles(bool reparse) // Oh still none? Add a custom executable runconfiguration if (runConfigurations().isEmpty()) { - addRunConfiguration(new ProjectExplorer::CustomExecutableRunConfiguration(this)); + addRunConfiguration(new QtSupport::CustomExecutableRunConfiguration(this)); } } |