我正在尝试使用 casablanca 'c++ rest sdk' 为 REST 请求运行 c++ windows 应用程序。
我创建了新的“CLR Empty Project”(visual studio 2012)并添加了新项目-“Windows Form”。添加了一些代码并且能够在运行项目时看到一个表单。
现在,我已经按照说明使用 NuGet 安装了 c++ rest sdk。一切顺利。问题是为了使用“c++ rest sdk”,我添加了这些:

#include <cpprest/http_client.h>
#include <cpprest/filestream.h>

它没有找到那些文件。
我越来越
fatal error C1083: Cannot open include file: 'cpprest/http_client.h': No   such file or directory

项目截图:

谢谢!

最佳答案

检查您是否为 header 设置了包含目录。您可以在项目属性 -> 配置属性 -> C/C++ -> 常规 -> 附加包含目录下执行此操作。

关于c++ - 无法打开包含文件 : 'cpprest/http_client.h' ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29658672/

10-12 03:27