Java: use a temporary directory for the workspace

Change-Id: Ie8fc01f680393f141f099f57b98eb16a10b37d7e
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2021-02-19 08:57:45 +01:00
parent 1dafabdb87
commit 605df0c4b6
5 changed files with 51 additions and 38 deletions

View File

@@ -722,7 +722,10 @@ Utils::CommandLine StdIOSettings::command() const
BaseClientInterface *StdIOSettings::createInterface() const
{
return new StdIOClientInterface(m_executable, arguments());
auto interface = new StdIOClientInterface;
interface->setExecutable(m_executable);
interface->setArguments(arguments());
return interface;
}
class JsonTreeItemDelegate : public QStyledItemDelegate