diff --git a/src/plugins/projectexplorer/msvctoolchain.cpp b/src/plugins/projectexplorer/msvctoolchain.cpp index 082738c58e4..25526160e0e 100644 --- a/src/plugins/projectexplorer/msvctoolchain.cpp +++ b/src/plugins/projectexplorer/msvctoolchain.cpp @@ -397,6 +397,11 @@ QList MsvcToolChain::suggestedMkspecList() const case Abi::WindowsMsvc2013Flavor: return QList() << Utils::FileName::fromLatin1("win32-msvc2013") + << Utils::FileName::fromLatin1("winphone-arm-msvc2013") + << Utils::FileName::fromLatin1("winphone-x86-msvc2013") + << Utils::FileName::fromLatin1("winrt-arm-msvc2013") + << Utils::FileName::fromLatin1("winrt-x86-msvc2013") + << Utils::FileName::fromLatin1("winrt-x64-msvc2013") << Utils::FileName::fromLatin1("win32-msvc2012") << Utils::FileName::fromLatin1("win32-msvc2010"); default: diff --git a/src/plugins/winrt/winrtpackagedeploymentstep.cpp b/src/plugins/winrt/winrtpackagedeploymentstep.cpp index 5b350f66428..dfafb632bc7 100644 --- a/src/plugins/winrt/winrtpackagedeploymentstep.cpp +++ b/src/plugins/winrt/winrtpackagedeploymentstep.cpp @@ -151,6 +151,8 @@ bool WinRtPackageDeploymentStep::processSucceeded(int exitCode, QProcess::ExitSt QList > installableFilesList; foreach (DeployableFile file, target()->deploymentData().allFiles()) { QString remoteFilePath = file.remoteFilePath(); + while (remoteFilePath.startsWith(QLatin1Char('/'))) + remoteFilePath.remove(0, 1); QString localFilePath = file.localFilePath().toString(); if (localFilePath == m_targetFilePath) { if (!m_targetFilePath.endsWith(QLatin1String(".exe"))) {