summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/remotelinuxrunconfiguration.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-09-27 17:17:23 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2011-09-27 17:20:25 +0200
commit09d0ec188996d018b034f9257355218ddb794c90 (patch)
treea5412f7ceeb3c42565785617566124fe6e56cab1 /src/plugins/remotelinux/remotelinuxrunconfiguration.h
parentaafd49424a363ad05c081fb92b92ae4032117003 (diff)
downloadqt-creator-09d0ec188996d018b034f9257355218ddb794c90.tar.gz
RemoteLinux: Add support for alternate remote command.
Sometimes, it is not the deployed binary that we want to call, but e.g. some wrapper. Change-Id: Ic8fe8f865cc29bf01e64b3781a92362b4521d8e4 Reviewed-on: http://codereview.qt-project.org/5642 Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxrunconfiguration.h')
-rw-r--r--src/plugins/remotelinux/remotelinuxrunconfiguration.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/remotelinux/remotelinuxrunconfiguration.h b/src/plugins/remotelinux/remotelinuxrunconfiguration.h
index e1ad02154f..406850ebe5 100644
--- a/src/plugins/remotelinux/remotelinuxrunconfiguration.h
+++ b/src/plugins/remotelinux/remotelinuxrunconfiguration.h
@@ -89,9 +89,14 @@ public:
virtual DebuggingType debuggingType() const;
QString localExecutableFilePath() const;
+ QString defaultRemoteExecutableFilePath() const;
QString remoteExecutableFilePath() const;
QString arguments() const;
void setArguments(const QString &args);
+ void setAlternateRemoteExecutable(const QString &exe);
+ QString alternateRemoteExecutable() const;
+ void setUseAlternateExecutable(bool useAlternate);
+ bool useAlternateExecutable() const;
QSharedPointer<const LinuxDeviceConfiguration> deviceConfig() const;
QString gdbCmd() const;