Fix deployment to Windows 10 Phone Emulator

Change-Id: Iaedee9ee61c3bf6b628a2f3d6480b980ddac54f2
Reviewed-by: Jake Petroules <jake.petroules@qt.io>
This commit is contained in:
Ryuji Kakemizu
2017-09-27 14:57:47 +09:00
committed by R Kake
parent b58f695cf8
commit fc4bc59fd5

View File

@@ -185,7 +185,8 @@ void WinRtRunnerHelper::startWinRtRunner(const RunConf &conf)
if (m_device->type() == Constants::WINRT_DEVICE_TYPE_LOCAL)
QtcProcess::addArgs(&runnerArgs, QStringLiteral("--profile appx"));
else if (m_device->type() == Constants::WINRT_DEVICE_TYPE_PHONE)
else if (m_device->type() == Constants::WINRT_DEVICE_TYPE_PHONE ||
m_device->type() == Constants::WINRT_DEVICE_TYPE_EMULATOR)
QtcProcess::addArgs(&runnerArgs, QStringLiteral("--profile appxphone"));
QtcProcess::addArg(&runnerArgs, m_executableFilePath);