我正在尝试使用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。
我知道我不应该触摸这些文件,因为它们已经包含在模板中但我不知道如何摆脱这些错误。任何帮助将不胜感激。