我使用 Visual Studio 2015 构建了 mlpack(c++ 的附加库)。所有库文件都在 build 文件夹中
现在,当我在其他目录中添加 mlpack 位置后尝试在 Visual Studio 中编译以下代码时,如图所示添加了目录我收到错误消息“无法打开包含文件'mlpack/core.hpp':没有这样的文件或目录”
#include "stdafx.h"
#include <mlpack/core.hpp>
using namespace mlpack;
int main()
{
}
即使 core.hpp 存在于包含的 mlpack 文件夹 中,它也存在!
我如何添加这个文件并编译没有错误