由于外部依赖性,StartupTask.cpp构建失败

时间:2017-01-22 07:07:46

标签: c++ visual-studio raspberry-pi windowsiot windows-iot-core-10

我正在尝试使用Visual Studio Community 2015为我的Raspberry Pi构建Windows IOT应用程序。这是项目模板代码。

#include "pch.h"
#include "StartupTask.h"

using namespace BackgroundApplication1;
using namespace Platform;
using namespace Windows::ApplicationModel::Background;

// The Background Application template is documented at     http://go.microsoft.com/fwlink/?LinkID=533884&clcid=0x409

void StartupTask::Run(IBackgroundTaskInstance^ taskInstance)
{

// TODO: Insert code to perform background work
//
// If you start any asynchronous methods here, prevent the task
// from closing prematurely by using BackgroundTaskDeferral as
// described in http://aka.ms/backgroundtaskdeferral
//
}

虽然每次我尝试构建这个项目时,我都会得到一个错误列表,这些错误来自外部依赖项头文件arm_neon.h,atomic.h,chrono.h,cstdint.h和ratio .h。 List of errors

我知道我不应该触摸这些文件,因为它们已经包含在模板中但我不知道如何摆脱这些错误。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

您需要确保安装了以下软件包, enter image description here

还有Windows SDK,它应该包含在上面的包中。