From fc4bc59fd56f6e67342e7b143c26668434c3682d Mon Sep 17 00:00:00 2001 From: Ryuji Kakemizu Date: Wed, 27 Sep 2017 14:57:47 +0900 Subject: [PATCH] Fix deployment to Windows 10 Phone Emulator Change-Id: Iaedee9ee61c3bf6b628a2f3d6480b980ddac54f2 Reviewed-by: Jake Petroules --- src/plugins/winrt/winrtrunnerhelper.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/winrt/winrtrunnerhelper.cpp b/src/plugins/winrt/winrtrunnerhelper.cpp index 0b4c6653bb9..60ca4f870c8 100644 --- a/src/plugins/winrt/winrtrunnerhelper.cpp +++ b/src/plugins/winrt/winrtrunnerhelper.cpp @@ -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);