Add dialog for both managing remote hosts (add/remove) and attaching

This commit is contained in:
baldurk
2017-02-09 15:42:54 +00:00
parent 47be248cad
commit e1d180246c
13 changed files with 1052 additions and 14 deletions
+3 -1
View File
@@ -25,6 +25,7 @@
#include "RemoteHost.h"
#include <QProcess>
#include <QThread>
#include "Code/QRDUtils.h"
#include "renderdoc_replay.h"
RemoteHost::RemoteHost()
@@ -102,7 +103,8 @@ void RemoteHost::CheckStatus()
void RemoteHost::Launch()
{
QProcess process;
RDProcess process;
process.start(RunCommand);
process.waitForFinished(2000);
process.detach();
}