aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/devicesupport/filetransferinterface.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2022-10-14 10:06:21 +0200
committerhjk <hjk@qt.io>2022-10-18 12:21:44 +0000
commitb3233035189cc323049b1f063c34daa0ae9feb22 (patch)
tree2f641f0aa7002177c418ccc79fe4d818d88e1a0c /src/plugins/projectexplorer/devicesupport/filetransferinterface.h
parent508dd23de46ab0d101bbf58c875c2b3ad8c37824 (diff)
RemoteLinux: Fix deployment when building remotely
By using a generic file transfer method based of FilePath::copyFile() that doesn't require either of the transfer end point to be the local host. Change-Id: Ia2e4273df52f5ce6533046d96be3f6b521b7f0a5 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/devicesupport/filetransferinterface.h')
-rw-r--r--src/plugins/projectexplorer/devicesupport/filetransferinterface.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/devicesupport/filetransferinterface.h b/src/plugins/projectexplorer/devicesupport/filetransferinterface.h
index ad4ccc200e..543e1ce6c2 100644
--- a/src/plugins/projectexplorer/devicesupport/filetransferinterface.h
+++ b/src/plugins/projectexplorer/devicesupport/filetransferinterface.h
@@ -20,6 +20,7 @@ enum class FileTransferDirection {
enum class FileTransferMethod {
Sftp,
Rsync,
+ GenericCopy,
Default = Sftp
};