Valgrind: Support console applications

Task-number: QTCREATORBUG-7311
Change-Id: I973136076118fd8868c6cb461ad31e107c73566e
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
This commit is contained in:
Orgad Shaneh
2014-05-06 00:08:12 +03:00
committed by Orgad Shaneh
parent 3089c8b1df
commit 60cd217981
13 changed files with 75 additions and 41 deletions

View File

@@ -38,6 +38,7 @@
#include <ssh/sshconnection.h>
#include <utils/environment.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/applicationlauncher.h>
namespace Analyzer {
@@ -47,12 +48,15 @@ namespace Analyzer {
class ANALYZER_EXPORT AnalyzerStartParameters
{
public:
AnalyzerStartParameters() : analyzerPort(0)
AnalyzerStartParameters()
: localRunMode(ProjectExplorer::ApplicationLauncher::Gui)
, analyzerPort(0)
{}
StartMode startMode;
ProjectExplorer::RunMode runMode;
QSsh::SshConnectionParameters connParams;
ProjectExplorer::ApplicationLauncher::Mode localRunMode;
QString debuggee;
QString debuggeeArgs;