ide: Open Terminal in Win32

git-svn-id: svn://ultimatepp.org/upp/trunk@15525 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2020-11-27 09:42:20 +00:00
parent a3a306c3cc
commit 6d3e844bf6
10 changed files with 54 additions and 33 deletions

View file

@ -178,6 +178,13 @@ void Ide::ExecuteBinary()
}
}
void Ide::LaunchTerminal(const char *dir)
{
One<Host> h = CreateHostRunDir();
h->ChDir(dir);
h->Launch(Nvl(HostConsole, "powershell.exe"), false);
}
class SelectAndroidDeviceDlg : public WithSelectAndroidDeviceLayout<TopWindow> {
typedef SelectAndroidDeviceDlg CLASSNAME;